:root {
  --black: #0c0d0d;
  --ink: #101112;
  --gold: #dda437;
  --gold-dark: #bf7f1f;
  --paper: #f6f3ef;
  --line: #dfd7cc;
  --muted: #5b5650;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e9e6e1;
  color: var(--ink);
  font-family: Inter, Avenir Next, Helvetica Neue, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  width: min(1103px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 615px;
  overflow: hidden;
  background: var(--black);
}

.hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #090a0a 0%, #090a0a 44%, rgba(9, 10, 10, 0.82) 55%, rgba(9, 10, 10, 0.08) 78%, rgba(9, 10, 10, 0) 100%),
    radial-gradient(circle at 65% 18%, rgba(221, 164, 55, 0.24), transparent 24%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(670px, 68%);
  padding: 64px 0 72px 80px;
  color: var(--white);
  animation: rise-in 700ms ease both;
}

.script-name {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: Snell Roundhand, Brush Script MT, Segoe Script, cursive;
  font-size: clamp(2.8rem, 6vw, 4.55rem);
  line-height: 0.95;
  font-weight: 400;
}

.brand-logo {
  display: block;
  width: min(460px, 100%);
  height: auto;
  object-fit: contain;
}

.brand-logo--hero {
  margin: 0 0 24px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.36));
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.85rem, 6.2vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.gold-rule {
  display: block;
  width: 118px;
  height: 5px;
  margin: 28px 0 28px;
  background: var(--gold);
}

.hero__lead {
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(1.55rem, 2.6vw, 2.08rem);
  line-height: 1.22;
  font-weight: 800;
}

.hero__copy {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 2vw, 1.54rem);
  line-height: 1.35;
}

.offer-strip {
  background: var(--white);
  padding: 32px 42px 26px;
}

.offer-strip__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(260px, 0.95fr) minmax(268px, 302px);
  gap: 18px;
  align-items: start;
}

.offer-block {
  min-width: 0;
}

.offer-block--divider {
  border-left: 2px solid var(--line);
  padding-left: 26px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  color: #0a0b0b;
  font-size: clamp(1.42rem, 2.1vw, 1.88rem);
  line-height: 1.03;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-panel h2 {
  font-size: clamp(1.32rem, 1.8vw, 1.64rem);
}

.round-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
}

.round-icon svg {
  width: 40px;
  height: 40px;
}

.round-icon .guitar-mark {
  width: 46px;
  height: 46px;
  stroke-width: 1.6;
}

.round-icon--large {
  width: 108px;
  height: 108px;
}

.round-icon--large svg {
  width: 56px;
  height: 56px;
}

.check-list,
.star-list,
.service-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #353230;
  font-size: clamp(0.98rem, 1.33vw, 1.1rem);
  line-height: 1.32;
}

.check-list li,
.star-list li,
.service-list li {
  position: relative;
  min-height: 26px;
  padding-left: 42px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  content: "✓";
  font-size: 16px;
  font-weight: 800;
}

.star-list li::before {
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold-dark);
  content: "★";
  font-size: 25px;
  line-height: 1;
}

.service-list {
  gap: 14px;
}

.service-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  content: "★";
  font-size: 24px;
  line-height: 1;
}

.service-list__item--featured {
  margin: 2px 0;
  padding: 14px 16px 14px 50px;
  border: 1px solid rgba(191, 127, 31, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(221, 164, 55, 0.13), rgba(255, 255, 255, 0));
}

.service-list__item--featured::before {
  left: 16px;
  top: 15px;
}

.service-list h3 {
  margin: 0 0 4px;
  color: #24211f;
  font-size: 1.04rem;
  line-height: 1.08;
  font-weight: 900;
}

.service-list p {
  margin: 0;
  color: #3d3935;
  font-size: 0.9rem;
  line-height: 1.27;
}

.service-list__button {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(10, 11, 11, 0.88);
  border-radius: 8px;
  background: #111312;
  color: var(--white);
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.13);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-list__button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.service-list__button:hover {
  background: var(--gold);
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(191, 127, 31, 0.22);
}

.price-panel {
  min-height: 365px;
  padding: 22px 18px 20px;
  border: 3px solid var(--gold);
  border-radius: 10px;
  background: #111312;
  color: var(--white);
  text-align: center;
}

.price-panel__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  color: var(--gold);
  opacity: 0.92;
}

.price-panel__top span,
.price-panel__feature::before {
  display: block;
  height: 1px;
  background: currentColor;
}

.price-panel__top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.price-panel__label {
  margin: 30px 0 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.price-panel__amount {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(4rem, 6.2vw, 4.55rem);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.price-panel__feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(221, 164, 55, 0.56);
  padding-top: 20px;
  text-align: left;
  font-size: 1.03rem;
  line-height: 1.18;
}

.price-panel__feature svg {
  width: 38px;
  height: 48px;
  color: var(--gold);
}

.price-panel__note {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.28;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  width: calc(100% - 108px);
  margin: 26px auto 10px;
  padding: 20px 30px;
  border-radius: 12px;
  background: #efebe5;
}

.contact-panel__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}

.gold-rule--small {
  width: 72px;
  height: 3px;
  margin: 12px 0 18px;
}

.contact-panel p {
  margin: 0;
  color: #3c3935;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.42;
}

.contact-links {
  display: grid;
  gap: 8px;
  border-left: 2px solid var(--line);
  padding-left: 30px;
  font-style: normal;
}

.contact-link {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  color: #3a3631;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.contact-link:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.contact-link--primary {
  margin: 0;
}

.contact-link__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #151717;
  color: var(--white);
}

.contact-link__icon svg {
  width: 27px;
  height: 27px;
}

.contact-link__icon .whatsapp-mark {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.contact-link strong {
  display: block;
  color: #2c2a27;
  font-weight: 500;
}

.contact-link span:last-child {
  color: var(--gold-dark);
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
  font-weight: 700;
  overflow-wrap: break-word;
}

.media-banner {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 26px;
  align-items: center;
  width: calc(100% - 108px);
  margin: 10px auto 0;
  padding: 22px 26px 22px 46px;
  border-radius: 9px;
  background: #111312;
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.media-banner__play {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.media-banner__play svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  stroke-width: 0;
}

.media-banner__text {
  display: grid;
  gap: 4px;
}

.media-banner__text strong {
  font-size: clamp(1.35rem, 2.25vw, 1.65rem);
  line-height: 1.08;
}

.media-banner__text span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.25;
}

.media-banner__button,
.drive-button {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #080808;
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.media-banner__button {
  min-width: 270px;
}

.media-banner__button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke-width: 0;
}

.media-banner:hover .media-banner__button,
.drive-button:hover {
  background: #efb84c;
}

.signature {
  padding: 22px 64px 28px;
  color: #211f1c;
}

.signature p {
  margin: 0 0 2px 164px;
  font-size: 1.04rem;
}

.signature strong {
  display: block;
  margin-left: 164px;
  font-family: Snell Roundhand, Brush Script MT, Segoe Script, cursive;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.95;
}

.signature .brand-logo--signature {
  width: min(335px, 100%);
  margin-left: 164px;
}

.content-page {
  min-height: 100vh;
  background: #111312;
}

.content-shell {
  width: min(1103px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--black);
}

.back-link {
  position: fixed;
  z-index: 5;
  top: 22px;
  left: max(22px, calc((100vw - 1103px) / 2 + 22px));
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(221, 164, 55, 0.5);
  border-radius: 999px;
  background: rgba(9, 10, 10, 0.72);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.content-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.content-hero__image {
  position: absolute;
  inset: 0;
}

.content-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.content-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090a0a 0%, rgba(9, 10, 10, 0.9) 42%, rgba(9, 10, 10, 0.28) 100%);
}

.content-hero__copy {
  position: relative;
  z-index: 2;
  width: min(620px, 86%);
  padding: 132px 0 72px 72px;
  animation: rise-in 700ms ease both;
}

.content-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.96;
  font-weight: 950;
}

.content-hero p:not(.script-name) {
  max-width: 530px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.4;
}

.drive-button {
  min-width: 210px;
  padding: 0 34px;
}

.media-shell {
  width: min(1103px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #0d0f0f;
  color: var(--white);
}

.media-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.media-hero__image {
  position: absolute;
  inset: 0;
}

.media-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.03) contrast(1.03);
}

.media-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090a0a 0%, rgba(9, 10, 10, 0.95) 40%, rgba(9, 10, 10, 0.46) 76%, rgba(9, 10, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 10, 10, 0) 62%, #0d0f0f 100%);
}

.media-hero__copy {
  position: relative;
  z-index: 2;
  width: min(650px, 86%);
  padding: 112px 0 86px 72px;
  animation: rise-in 700ms ease both;
}

.media-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 7.5vw, 6.7rem);
  line-height: 0.96;
  font-weight: 950;
}

.media-hero p:not(.script-name) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.38;
}

.internal-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  padding: 0 54px 44px;
  align-items: start;
}

.internal-player.is-vertical {
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.internal-player.is-horizontal {
  grid-template-columns: minmax(0, 1fr);
}

.internal-player__frame {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(221, 164, 55, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(221, 164, 55, 0.16), transparent 36%),
    #050606;
}

.internal-player.is-vertical .internal-player__frame {
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.internal-player.is-horizontal .internal-player__frame {
  aspect-ratio: 16 / 9;
}

.internal-player__frame iframe,
.internal-player__frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #050606;
  object-fit: contain;
}

.internal-player.is-vertical .internal-player__frame video {
  object-fit: cover;
}

.player-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(5, 6, 6, 0.05), rgba(5, 6, 6, 0.2));
  color: var(--gold);
  cursor: pointer;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.player-play-overlay span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(5, 6, 6, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.player-play-overlay svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  stroke-width: 0;
}

.player-play-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-play-overlay.has-error span {
  background: rgba(5, 6, 6, 0.9);
}

.player-empty {
  display: grid;
  height: 100%;
  min-height: 430px;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.player-empty__button {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.player-empty__button svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke-width: 0;
}

.player-empty p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.internal-player__details {
  display: flex;
  width: min(760px, 100%);
  min-height: auto;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(221, 164, 55, 0.35);
  padding-top: 26px;
}

.internal-player.is-vertical .internal-player__details {
  min-height: 520px;
  border-top: 0;
  border-left: 1px solid rgba(221, 164, 55, 0.35);
  padding-top: 0;
  padding-left: 34px;
}

.internal-player.is-horizontal .internal-player__details {
  min-height: auto;
  border-left: 0;
  border-top: 1px solid rgba(221, 164, 55, 0.35);
  padding-top: 26px;
  padding-left: 0;
}

.internal-player__details span {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.internal-player__details h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 0.98;
}

.internal-player__details p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.42;
}

.source-link {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(221, 164, 55, 0.72);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.source-link:hover {
  background: var(--gold);
  color: #070707;
  transform: translateY(-2px);
}

.media-gallery {
  padding: 0 54px 68px;
}

.media-gallery__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.media-gallery__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.media-gallery__heading .gold-rule {
  flex: 0 0 auto;
  margin: 0 0 8px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.inline-video-card {
  overflow: hidden;
  border: 1px solid rgba(221, 164, 55, 0.36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 12%, rgba(221, 164, 55, 0.18), transparent 28%),
    #111312;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.inline-video-card--horizontal {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
}

.inline-video-card__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050606;
}

.inline-video-card--vertical .inline-video-card__frame {
  aspect-ratio: 9 / 16;
}

.inline-video-card--horizontal .inline-video-card__frame {
  aspect-ratio: 16 / 9;
}

.inline-video-card__poster,
.inline-video-card__frame iframe,
.inline-video-card__frame video {
  display: block;
  width: 100%;
  height: 100%;
}

.inline-video-card__frame video {
  background: #050606;
  object-fit: cover;
}

.inline-video-card--horizontal .inline-video-card__frame video {
  object-fit: contain;
}

.inline-video-card__poster {
  position: relative;
  background:
    radial-gradient(circle at 50% 30%, rgba(221, 164, 55, 0.24), transparent 36%),
    linear-gradient(145deg, #202120, #090a0a);
  background-position: center;
  background-size: cover;
}

.inline-video-card__poster-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-video-card__poster-image {
  pointer-events: none;
}

.inline-video-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.04), rgba(7, 7, 7, 0.28)),
    radial-gradient(circle at center, rgba(7, 7, 7, 0.05), rgba(7, 7, 7, 0.44));
}

.inline-video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(5, 6, 6, 0.1);
  color: var(--gold);
  cursor: pointer;
  transition: background 180ms ease;
}

.inline-video-card__play::before {
  position: absolute;
  display: block;
  width: 92px;
  height: 92px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(5, 6, 6, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  content: "";
  transition: transform 180ms ease, background 180ms ease;
}

.inline-video-card__play svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-left: 6px;
  fill: currentColor;
  stroke-width: 0;
}

.inline-video-card__play:hover {
  background: rgba(5, 6, 6, 0.2);
}

.inline-video-card__play:hover::before {
  background: rgba(5, 6, 6, 0.86);
  transform: scale(1.05);
}

.inline-video-card__frame iframe,
.inline-video-card__frame video {
  border: 0;
  background: #050606;
}

.inline-video-card__copy {
  display: grid;
  gap: 8px;
  padding: 20px 18px 22px;
}

.inline-video-card--horizontal .inline-video-card__copy {
  padding: 28px 30px;
}

.inline-video-card__meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.inline-video-card__meta span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-video-card__drive {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(221, 164, 55, 0.44);
  border-radius: 8px;
  background: rgba(221, 164, 55, 0.1);
  color: var(--gold);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.inline-video-card__drive svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.inline-video-card__drive:hover {
  border-color: rgba(221, 164, 55, 0.76);
  background: rgba(221, 164, 55, 0.18);
  transform: translateY(-1px);
}

.inline-video-card__copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.3rem, 2.7vw, 2.15rem);
  line-height: 1.02;
}

.inline-video-card.is-playing {
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.media-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(221, 164, 55, 0.36);
  border-radius: 10px;
  background:
    radial-gradient(circle at 75% 18%, rgba(221, 164, 55, 0.23), transparent 28%),
    linear-gradient(145deg, #191b1a, #090a0a);
  background-position: center;
  background-size: cover;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.media-card--vertical {
  aspect-ratio: 9 / 14;
  min-height: 285px;
}

.media-card--horizontal {
  aspect-ratio: 16 / 11;
  min-height: 225px;
}

.media-card:hover,
.media-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.media-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.05) 0%, rgba(7, 7, 7, 0.78) 78%, rgba(7, 7, 7, 0.92) 100%);
}

.media-card__play {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.5);
  color: var(--gold);
}

.media-card__play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke-width: 0;
}

.media-card__copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 7px;
}

.media-card__copy small {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card__copy strong {
  font-size: 1.25rem;
  line-height: 1.08;
}

.media-card__copy em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-style: normal;
}

.media-card--pending {
  color: rgba(255, 255, 255, 0.86);
}

.duo-crisol-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(103, 13, 16, 0.45), transparent 34rem),
    #070707;
}

.duo-shell {
  width: min(1103px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #070707;
  color: var(--white);
  box-shadow: var(--shadow);
}

.duo-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #050505;
}

.duo-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 59%;
  overflow: hidden;
}

.duo-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.12) contrast(1.04) brightness(1.08);
}

.duo-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, #050505 34%, rgba(5, 5, 5, 0.74) 43%, rgba(5, 5, 5, 0.38) 55%, rgba(5, 5, 5, 0.12) 76%, rgba(5, 5, 5, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05) 58%, #070707 100%),
    radial-gradient(circle at 76% 18%, rgba(221, 164, 55, 0.28), transparent 18rem);
}

.duo-hero__content {
  position: relative;
  z-index: 2;
  width: min(600px, 58%);
  padding: 54px 0 66px 68px;
  animation: rise-in 720ms ease both;
}

.duo-logo-image {
  display: block;
  width: min(210px, 48vw);
  height: auto;
  margin: 0 0 26px -8px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.58));
}

.duo-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.33rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1.25;
  text-transform: uppercase;
}

.duo-hero h1,
.duo-final h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  line-height: 0.92;
  text-transform: uppercase;
}

.duo-hero h1 {
  font-size: 4.85rem;
  font-weight: 800;
}

.duo-hero h1 span {
  display: block;
}

.duo-hero h1 span:first-child {
  color: var(--white);
}

.duo-hero h1 span:last-child,
.duo-final h2 span,
.duo-celebrations h2 span {
  color: #e8b85b;
}

.duo-hero__claim {
  max-width: 470px;
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.26;
  text-transform: uppercase;
}

.duo-hero__copy {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.45;
}

.duo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.duo-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.duo-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.duo-button--gold {
  border: 1px solid #f2c467;
  background: linear-gradient(135deg, #f1c466, #c98a25);
  color: #070707;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.duo-button--outline {
  border: 1px solid rgba(232, 184, 91, 0.86);
  background: rgba(5, 5, 5, 0.58);
  color: #e8b85b;
}

.duo-button--outline svg:first-child {
  fill: currentColor;
  stroke-width: 0;
}

.duo-button .whatsapp-mark {
  fill: currentColor;
  stroke: none;
}

.duo-button:hover {
  transform: translateY(-3px);
}

.duo-button--gold:hover {
  background: linear-gradient(135deg, #ffd77b, #d99b31);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.duo-button--outline:hover {
  border-color: #f5ca73;
  background: rgba(232, 184, 91, 0.12);
  color: #f5ca73;
}

.duo-button--video {
  position: relative;
  min-height: 76px;
  padding: 0 34px;
  border-width: 2px;
  background:
    linear-gradient(135deg, rgba(232, 184, 91, 0.24), rgba(5, 5, 5, 0.78)),
    rgba(5, 5, 5, 0.68);
  color: #f6cf7a;
  font-size: 1.04rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(246, 207, 122, 0.22);
}

.duo-button--video svg {
  width: 30px;
  height: 30px;
}

.duo-button--video:hover {
  background:
    linear-gradient(135deg, rgba(246, 207, 122, 0.34), rgba(30, 20, 9, 0.86)),
    rgba(5, 5, 5, 0.74);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(246, 207, 122, 0.42);
}

.duo-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #f2eee7;
  color: #111;
}

.duo-proof__item {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 26px 36px;
  text-align: center;
}

.duo-proof__item + .duo-proof__item {
  border-left: 1px solid rgba(182, 123, 33, 0.56);
}

.duo-line-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
}

.duo-line-icon svg,
.duo-line-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.duo-line-icon img {
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.duo-proof .duo-line-icon img {
  filter: brightness(0.72) saturate(1.25);
}

.duo-line-icon svg {
  stroke-width: 1.55;
}

.duo-proof h2 {
  min-height: 2.2em;
  margin: 0;
  color: #080808;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.duo-proof p {
  margin: 0;
  color: #151515;
  font-size: 0.93rem;
  line-height: 1.45;
}

.duo-celebrations {
  padding: 42px 52px 54px;
  background:
    radial-gradient(circle at 50% 0%, rgba(221, 164, 55, 0.14), transparent 24rem),
    linear-gradient(135deg, #050505, #0f0f0f 52%, #080808);
  color: var(--white);
}

.duo-celebrations h2 {
  margin: 0 0 34px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.duo-celebrations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.duo-celebration-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 8px 26px 0;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease;
}

.duo-celebration-item + .duo-celebration-item {
  border-left: 1px solid rgba(221, 164, 55, 0.5);
}

.duo-celebration-item h3 {
  min-height: 2.4em;
  margin: 0;
  color: #e8b85b;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.duo-celebration-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.42;
}

.duo-celebration-item:hover {
  transform: translateY(-4px);
}

.duo-final {
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(290px, 1.05fr) minmax(220px, 0.78fr);
  gap: 28px;
  align-items: center;
  padding: 36px 54px 42px;
  background:
    linear-gradient(90deg, rgba(103, 13, 16, 0.22), transparent 36%),
    #171614;
}

.duo-final h2 {
  font-size: 2.45rem;
  font-weight: 800;
}

.duo-final h2 span {
  display: block;
}

.duo-final p {
  max-width: 350px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.48;
}

.duo-final__actions {
  display: grid;
  gap: 14px;
}

.duo-final__actions .duo-button {
  width: 100%;
}

.duo-socials {
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.duo-socials a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.duo-socials span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(232, 184, 91, 0.78);
  border-radius: 8px;
  color: #e8b85b;
}

.duo-socials svg {
  width: 23px;
  height: 23px;
}

.duo-socials a:hover {
  color: #f5ca73;
  transform: translateX(4px);
}

.duo-modal-open {
  overflow: hidden;
}

.duo-video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.duo-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.duo-video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(221, 164, 55, 0.16), transparent 22rem),
    rgba(0, 0, 0, 0.86);
  cursor: pointer;
}

.duo-video-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  width: min(92vw, calc((100dvh - 108px) * 9 / 16 + 18px), 480px);
  max-height: calc(100dvh - 24px);
  padding: 8px;
  border: 1px solid rgba(246, 207, 122, 0.62);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(221, 164, 55, 0.18), rgba(5, 5, 5, 0.98) 42%),
    #050505;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.58);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.duo-video-modal.is-open .duo-video-modal__panel {
  transform: translateY(0) scale(1);
}

.duo-video-modal__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

.duo-video-modal__bar h2 {
  margin: 0;
  overflow: hidden;
  color: #f6cf7a;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.duo-video-modal__close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(246, 207, 122, 0.62);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.84);
  color: #f6cf7a;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.duo-video-modal__close svg {
  width: 22px;
  height: 22px;
}

.duo-video-modal__close:hover {
  background: rgba(246, 207, 122, 0.14);
  transform: translateY(-1px);
}

.duo-video-modal__video {
  display: block;
  width: min(100%, calc((100dvh - 108px) * 9 / 16));
  max-height: calc(100dvh - 108px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border-radius: 8px;
  background: #030303;
  object-fit: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .duo-hero__image img {
    animation: duo-depth 18s ease-in-out infinite alternate;
  }
}

@keyframes duo-depth {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.06) translateX(-8px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-shell {
    box-shadow: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero__image {
    width: 100%;
    opacity: 0.82;
  }

  .hero__image img {
    object-position: 58% top;
    filter: saturate(1.08) contrast(1.03) brightness(1.04);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(9, 10, 10, 0.1) 0%, rgba(9, 10, 10, 0.28) 30%, rgba(9, 10, 10, 0.82) 78%, #090a0a 100%),
      linear-gradient(90deg, rgba(9, 10, 10, 0.82) 0%, rgba(9, 10, 10, 0.52) 48%, rgba(9, 10, 10, 0.2) 100%);
  }

  .hero__content {
    width: 100%;
    padding: 54px 28px 52px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
  }

  .hero h1 {
    max-width: 620px;
  }

  .offer-strip {
    padding: 30px 24px 22px;
  }

  .offer-strip__inner {
    grid-template-columns: 1fr;
  }

  .offer-block--divider {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding: 28px 0 0;
  }

  .price-panel {
    width: min(360px, 100%);
    margin: 0 auto;
    min-height: 0;
  }

  .contact-panel,
  .media-banner {
    width: calc(100% - 48px);
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-links {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding: 22px 0 0;
  }

  .media-banner {
    grid-template-columns: 80px 1fr;
    padding: 20px;
  }

  .media-banner__play {
    width: 72px;
    height: 72px;
  }

  .media-banner__button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .signature {
    padding-inline: 24px;
  }

  .signature p,
  .signature strong,
  .signature .brand-logo--signature {
    margin-left: 0;
  }

  .content-hero__copy {
    padding: 110px 28px 60px;
  }

  .media-hero {
    min-height: 560px;
  }

  .media-hero__shade {
    background:
      linear-gradient(180deg, rgba(9, 10, 10, 0.24) 0%, rgba(9, 10, 10, 0.88) 48%, #0d0f0f 100%),
      linear-gradient(90deg, rgba(9, 10, 10, 0.86), rgba(9, 10, 10, 0.2));
  }

  .media-hero__copy {
    width: 100%;
    padding: 108px 28px 72px;
  }

  .internal-player {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px 38px;
  }

  .internal-player.is-vertical,
  .internal-player.is-horizontal {
    grid-template-columns: 1fr;
  }

  .internal-player.is-vertical .internal-player__frame {
    width: min(390px, 100%);
  }

  .internal-player__details {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(221, 164, 55, 0.35);
    padding: 26px 0 0;
  }

  .internal-player.is-vertical .internal-player__details,
  .internal-player.is-horizontal .internal-player__details {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(221, 164, 55, 0.35);
    padding: 26px 0 0;
  }

  .media-gallery {
    padding: 6px 24px 56px;
  }

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

  .inline-video-card--horizontal {
    grid-template-columns: 1fr;
  }

  .inline-video-card__play::before {
    width: 78px;
    height: 78px;
  }

  .inline-video-card__play svg {
    width: 36px;
    height: 36px;
  }

  .duo-shell {
    box-shadow: none;
  }

  .duo-hero {
    min-height: 760px;
  }

  .duo-hero__image {
    inset: 0;
    width: 100%;
    opacity: 0.64;
  }

  .duo-hero__image img {
    object-position: 50% 0%;
  }

  .duo-hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.62) 34%, #050505 88%),
      radial-gradient(circle at 78% 14%, rgba(221, 164, 55, 0.28), transparent 18rem);
  }

  .duo-hero__content {
    width: min(620px, 100%);
    padding: 78px 28px 56px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  }

  .duo-logo-image {
    width: min(190px, 48vw);
    margin-bottom: 28px;
  }

  .duo-hero h1 {
    font-size: 4.45rem;
  }

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

  .duo-proof__item:nth-child(odd) {
    border-left: 0;
  }

  .duo-proof__item:nth-child(n + 3) {
    border-top: 1px solid rgba(182, 123, 33, 0.56);
  }

  .duo-celebrations {
    padding: 38px 28px 44px;
  }

  .duo-celebrations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .duo-celebration-item:nth-child(odd) {
    border-left: 0;
  }

  .duo-celebration-item:nth-child(n + 3) {
    border-top: 1px solid rgba(221, 164, 55, 0.42);
    padding-top: 26px;
  }

  .duo-final {
    grid-template-columns: 1fr;
    padding: 34px 28px 42px;
  }

  .duo-final p {
    max-width: 620px;
  }
}

@media (min-width: 680px) and (max-width: 1040px) {
  .offer-strip__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }

  .offer-block--divider {
    border-top: 0;
    border-left: 2px solid var(--line);
    padding: 0 0 0 24px;
  }

  .price-panel {
    grid-column: 1 / -1;
    width: min(350px, 100%);
    min-height: 345px;
    margin: 4px auto 0;
    padding: 22px 24px 20px;
    text-align: center;
  }

  .price-panel__top {
    display: grid;
  }

  .price-panel__label {
    margin: 26px 0 0;
  }

  .price-panel__amount {
    margin: 0 0 18px;
    font-size: 4.2rem;
  }

  .price-panel__feature {
    border-top: 1px solid rgba(221, 164, 55, 0.56);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

  .price-panel__note {
    margin: 16px 0 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 520px;
  }

  .hero__image {
    opacity: 0.94;
  }

  .hero__image img {
    object-position: 72% top;
    filter: saturate(1.1) contrast(1.04) brightness(1.1);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(9, 10, 10, 0.02) 0%, rgba(9, 10, 10, 0.14) 24%, rgba(9, 10, 10, 0.56) 58%, #090a0a 100%),
      linear-gradient(90deg, rgba(9, 10, 10, 0.82) 0%, rgba(9, 10, 10, 0.58) 52%, rgba(9, 10, 10, 0.08) 100%);
  }

  .script-name {
    font-size: 2.38rem;
  }

  .brand-logo--hero {
    width: min(390px, 100%);
    margin-bottom: 20px;
  }

  .signature .brand-logo--signature {
    width: min(315px, 100%);
  }

  .hero h1 {
    font-size: 2.82rem;
  }

  .hero__lead {
    font-size: 1.16rem;
  }

  .hero__copy {
    font-size: 1.06rem;
  }

  .hero__content {
    padding: 44px 24px 42px;
  }

  .gold-rule {
    width: 92px;
    height: 4px;
    margin: 20px 0 22px;
  }

  .section-heading {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .contact-panel__intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .round-icon {
    width: 60px;
    height: 60px;
  }

  .round-icon svg {
    width: 34px;
    height: 34px;
  }

  .round-icon .guitar-mark {
    width: 38px;
    height: 38px;
  }

  .round-icon--large {
    width: 86px;
    height: 86px;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 1.25rem;
  }

  .price-panel {
    width: min(326px, 100%);
    padding: 20px 18px;
  }

  .price-panel__amount {
    font-size: 3.75rem;
  }

  .price-panel__label {
    margin-top: 22px;
  }

  .price-panel__feature {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    font-size: 0.96rem;
  }

  .price-panel__feature svg {
    width: 34px;
    height: 42px;
  }

  .contact-link {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .contact-link__icon {
    width: 42px;
    height: 42px;
  }

  .media-banner {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .media-banner__play {
    width: 58px;
    height: 58px;
  }

  .media-banner__play svg {
    width: 28px;
    height: 28px;
  }

  .media-banner__text strong {
    font-size: 1.22rem;
  }

  .media-banner__text span {
    font-size: 0.98rem;
  }

  .media-banner__button {
    min-height: 56px;
    font-size: 0.98rem;
  }

  .content-hero h1 {
    font-size: 3.5rem;
  }

  .media-hero h1 {
    font-size: 3.5rem;
  }

  .internal-player__frame,
  .player-empty {
    min-height: 260px;
  }

  .internal-player__frame iframe,
  .internal-player__frame video,
  .internal-player.is-horizontal .internal-player__frame,
  .internal-player.is-vertical .internal-player__frame {
    min-height: 0;
  }

  .internal-player.is-vertical .internal-player__frame {
    width: min(315px, 100%);
  }

  .media-gallery__heading {
    display: block;
  }

  .media-gallery__heading .gold-rule {
    margin-top: 14px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .inline-video-card__copy,
  .inline-video-card--horizontal .inline-video-card__copy {
    padding: 18px;
  }

  .inline-video-card__play::before {
    width: 66px;
    height: 66px;
  }

  .inline-video-card__play svg {
    width: 30px;
    height: 30px;
  }

  .service-list__button {
    width: fit-content;
  }

  .duo-hero {
    min-height: 710px;
  }

  .duo-hero__image {
    opacity: 0.56;
  }

  .duo-hero__image img {
    object-position: 50% 0%;
  }

  .duo-hero__content {
    padding: 72px 24px 46px;
  }

  .duo-logo-image {
    display: none;
  }

  .duo-kicker {
    margin-top: 186px;
  }

  .duo-kicker {
    font-size: 0.92rem;
    letter-spacing: 0.28em;
  }

  .duo-hero h1 {
    font-size: 3.24rem;
  }

  .duo-hero__claim {
    font-size: 1.02rem;
  }

  .duo-hero__copy {
    font-size: 0.98rem;
  }

  .duo-actions {
    display: grid;
    gap: 12px;
  }

  .duo-button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .duo-button--video {
    min-height: 68px;
    font-size: 0.94rem;
  }

  .duo-video-modal {
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .duo-video-modal__panel {
    gap: 8px;
    width: min(94vw, calc((100dvh - 136px) * 9 / 16 + 16px));
    padding: 7px;
  }

  .duo-video-modal__bar {
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .duo-video-modal__bar h2 {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .duo-video-modal__close {
    width: 40px;
    height: 40px;
  }

  .duo-video-modal__video {
    width: min(100%, calc((100dvh - 136px) * 9 / 16));
    max-height: calc(100dvh - 136px);
  }

  .duo-proof {
    grid-template-columns: 1fr;
  }

  .duo-proof__item {
    padding: 28px 24px;
    border-left: 0;
  }

  .duo-proof__item + .duo-proof__item,
  .duo-proof__item:nth-child(n + 3) {
    border-top: 1px solid rgba(182, 123, 33, 0.56);
    border-left: 0;
  }

  .duo-proof h2 {
    min-height: 0;
  }

  .duo-celebrations h2 {
    font-size: 1.42rem;
  }

  .duo-celebrations__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .duo-celebration-item {
    padding: 28px 0;
    border-left: 0;
  }

  .duo-celebration-item + .duo-celebration-item,
  .duo-celebration-item:nth-child(n + 3) {
    border-top: 1px solid rgba(221, 164, 55, 0.42);
    border-left: 0;
  }

  .duo-celebration-item h3 {
    min-height: 0;
  }

  .duo-final h2 {
    font-size: 2.08rem;
  }

  .duo-socials a {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    overflow-wrap: anywhere;
  }

  .duo-socials span {
    width: 34px;
    height: 34px;
  }
}
