/* ============================================================
   Page UGC
   Direction: carnet de création éditorial, tactile et assumé
   ============================================================ */

.ugc-document,
.ugc-page {
  overflow-x: hidden;
}

.ugc-page {
  --ugc-pink: #f3c7cf;
  --ugc-pink-deep: #d98fa1;
  --ugc-red: #b63f76; /* rose framboise, cohérent avec l'accent du site */
  --ugc-yellow: #f2d66c;
  --ugc-ink: #183c34;
}

.ugc-page .nav {
  z-index: 80;
}

.ugc-page .nav-cta-short {
  display: none;
}

.ugc-page .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(24, 60, 52, 0.28);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ugc-ink);
  cursor: pointer;
}

.ugc-page .nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ugc-page .nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.ugc-page .nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ugc-page .nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.ugc-page .sans-eyebrow {
  font-family: var(--font-sans);
}

.ugc-page :focus-visible {
  outline: 3px solid var(--ugc-red);
  outline-offset: 4px;
}

.ugc-page input:focus-visible,
.ugc-page textarea:focus-visible,
.ugc-page select:focus-visible {
  outline-offset: 1px;
}

.ugc-page section[id] {
  scroll-margin-top: 92px;
}

.ugc-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ugc-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 214, 108, 0.5) 0 8%, transparent 8.2%),
    linear-gradient(118deg, var(--cream) 0 63%, var(--ugc-pink) 63% 100%);
}

.ugc-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ugc-hero::after {
  width: 420px;
  height: 420px;
  border: 2px solid rgba(24, 60, 52, 0.22);
  border-radius: 50%;
  right: -210px;
  bottom: -210px;
}

.ugc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.ugc-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: var(--ugc-ink);
}

.ugc-eyebrow .line {
  width: 42px;
  height: 3px;
  background: var(--ugc-red);
  transform: rotate(-4deg);
}

.ugc-hero h1 {
  max-width: 10ch;
  margin: 0 0 28px;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.ugc-hero h1 .it {
  display: inline-block;
  color: var(--ugc-red);
  font-style: italic;
  transform: rotate(-2deg);
}

.ugc-hero .lede {
  max-width: 52ch;
  margin: 0 0 30px;
  color: #294b44;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.ugc-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.ugc-hero-actions .btn {
  background: var(--ugc-ink);
  border-color: var(--ugc-ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--ugc-pink-deep);
}

.ugc-hero-actions .btn:hover {
  background: var(--ugc-red);
  border-color: var(--ugc-red);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ugc-pink-deep);
}

.ugc-starting-price {
  color: var(--ugc-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ugc-hero-portrait {
  position: relative;
  width: min(100%, 470px);
  justify-self: center;
}

.ugc-hero-photo {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid var(--paper);
  box-shadow: 18px 18px 0 var(--ugc-ink);
  transform: rotate(2.5deg);
}

.ugc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.ugc-hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ugc-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  right: -50px;
  top: -45px;
  padding: 20px;
  border-radius: 50%;
  background: var(--ugc-yellow);
  color: var(--ugc-ink);
  font-family: "Caveat", cursive;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 5px 7px 0 rgba(24, 60, 52, 0.18);
}

.ugc-proof-strip {
  background: var(--ugc-ink);
  color: var(--paper);
  width: 100%;
  max-width: 100vw;
  overflow: clip;
  contain: inline-size paint;
  border-top: 1px solid var(--ugc-ink);
  border-bottom: 1px solid var(--ugc-ink);
}

.ugc-proof-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: ugc-marquee 24s linear infinite;
}

.ugc-proof-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  white-space: nowrap;
}

.ugc-proof-track span::after {
  content: "✦";
  color: var(--ugc-yellow);
  font-size: 14px;
}

@keyframes ugc-marquee {
  to { transform: translateX(-50%); }
}

.ugc-section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.ugc-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(44px, 7vw, 86px);
}

.ugc-section-head h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.ugc-section-head h2 .it {
  color: var(--ugc-red);
  font-style: italic;
}

.ugc-two-line-title > span {
  display: block;
}

.ugc-section-head p {
  max-width: 51ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.ugc-benefits {
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 214, 108, 0.24) 0 170px, transparent 171px),
    var(--paper);
}

.ugc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ugc-benefit {
  min-height: 280px;
  padding: 34px 30px 30px;
  border: 2px solid var(--ugc-ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ugc-ink);
}

.ugc-benefit:nth-child(2) {
  background: var(--ugc-pink);
  transform: translateY(22px) rotate(1deg);
}

.ugc-benefit:nth-child(3) {
  background: var(--ugc-yellow);
  transform: rotate(-1deg);
}

.ugc-benefit .num {
  display: block;
  margin-bottom: 34px;
  color: var(--ugc-red);
  font-family: "Caveat", cursive;
  font-size: 40px;
  line-height: 1;
}

.ugc-benefit h3 {
  margin: 0 0 12px;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-style: italic;
  line-height: 1;
}

.ugc-benefit p {
  margin: 0;
  color: #315149;
  font-size: 15px;
  line-height: 1.65;
}

.ugc-portfolio {
  background: var(--cream);
}

.ugc-portfolio-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(250px, 0.65fr);
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 24px;
  align-items: stretch;
}

.ugc-video-card {
  grid-row: 1 / 3;
  position: relative;
  min-height: 760px;
  padding: clamp(24px, 4vw, 54px);
  background: var(--ugc-ink);
  border-radius: 4px;
  overflow: hidden;
}

.ugc-video-card::before {
  content: "01";
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--ugc-yellow);
  font-family: "Caveat", cursive;
  font-size: 34px;
  transform: rotate(-8deg);
}

.ugc-video-embed {
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
}

.ugc-video-embed .tiktok-embed {
  width: 100%;
  min-width: 280px;
  margin: 0 auto;
}

.ugc-tiktok-consent {
  width: min(100%, 430px);
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--paper);
  text-align: center;
}

.ugc-tiktok-consent-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--ugc-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ugc-tiktok-consent p {
  margin: 0 auto 24px;
  max-width: 29ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 3vw, 34px);
  font-style: italic;
  line-height: 1.12;
}

.ugc-tiktok-consent button {
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--ugc-yellow);
  color: var(--ugc-ink);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.22);
}

.ugc-tiktok-consent a {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin: 20px auto 0;
  color: var(--paper);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ugc-video-meta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ugc-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 30px;
  border: 2px solid var(--ugc-ink);
  overflow: hidden;
}

.ugc-placeholder:nth-child(2) {
  background:
    radial-gradient(circle at 78% 24%, transparent 0 52px, var(--ugc-red) 53px 57px, transparent 58px),
    var(--ugc-pink);
}

.ugc-placeholder:nth-child(3) {
  background:
    radial-gradient(circle at 78% 22%, rgba(24, 60, 52, 0.08) 0 66px, transparent 67px),
    linear-gradient(145deg, transparent 0 58%, rgba(255, 255, 255, 0.24) 58.2% 100%),
    var(--ugc-yellow);
}

.ugc-placeholder .index {
  position: absolute;
  top: 22px;
  left: 25px;
  color: var(--ugc-red);
  font-family: "Caveat", cursive;
  font-size: 38px;
}

.ugc-placeholder .coming {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  background: var(--ugc-ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ugc-placeholder h3 {
  max-width: 10ch;
  margin: 0;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-style: italic;
  line-height: 0.98;
}

.ugc-tiktok-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.ugc-tiktok-note a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ugc-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  vertical-align: middle;
}

.ugc-offer {
  position: relative;
  background: var(--ugc-pink);
}

.ugc-offer::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: 7vw;
  top: 70px;
  border: 3px solid var(--ugc-red);
  border-radius: 50%;
  opacity: 0.45;
}

.ugc-offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.ugc-offer-price {
  position: sticky;
  top: 110px;
}

.ugc-offer-price .label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px;
  background: var(--ugc-yellow);
  color: var(--ugc-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.ugc-offer-price .amount {
  display: block;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(76px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.ugc-offer-price .tax {
  display: block;
  margin: 20px 0 28px;
  color: var(--ugc-ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ugc-offer-price p {
  max-width: 37ch;
  margin: 0;
  color: #315149;
  line-height: 1.65;
}

.ugc-included {
  padding: clamp(32px, 5vw, 54px);
  background: var(--paper);
  border: 2px solid var(--ugc-ink);
  box-shadow: 9px 9px 0 var(--ugc-ink);
}

.ugc-included h2 {
  margin: 0 0 26px;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.ugc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ugc-checklist li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-top: 1px solid var(--rule);
  color: #294b44;
  line-height: 1.55;
}

.ugc-checklist li:last-child {
  border-bottom: 1px solid var(--rule);
}

.ugc-checklist li::before {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 16px;
  color: var(--ugc-red);
  font-family: "Caveat", cursive;
  font-size: 25px;
  font-weight: 700;
}

.ugc-rights {
  background: var(--ugc-ink);
  color: var(--paper);
}

.ugc-rights .ugc-section-head h2,
.ugc-rights .ugc-section-head p {
  color: var(--paper);
}

.ugc-rights .ugc-section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.ugc-rights .ugc-section-head h2 .it {
  color: var(--ugc-pink);
}

.ugc-rights .ugc-section-head {
  grid-template-columns: 1fr;
}

.ugc-rights .ugc-section-head h2 {
  max-width: none;
  font-size: clamp(40px, 6vw, 84px);
}

.ugc-rights .ugc-section-head p {
  max-width: 58ch;
}

.ugc-rights-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ugc-rights-row {
  transition: background .25s ease;
}

.ugc-rights-row:hover {
  background: rgba(255, 255, 255, 0.045);
}

.ugc-rights-row > * {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  vertical-align: baseline;
}

.ugc-rights-row > *:not(:last-child) {
  padding-right: 26px;
}

.ugc-rights-row .num {
  width: 18%;
  color: var(--ugc-yellow);
  font-family: "Caveat", cursive;
  font-size: 27px;
  text-align: left;
}

.ugc-rights-row th[scope="row"] {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 43px);
  font-style: italic;
  font-weight: 500;
  text-align: left;
}

.ugc-rights-row .price {
  width: 30%;
  color: var(--ugc-pink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.ugc-rights-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.ugc-rights-note strong {
  color: var(--paper);
}

.ugc-fit {
  background:
    radial-gradient(circle at 87% 18%, var(--ugc-yellow) 0 75px, transparent 76px),
    var(--cream);
}

.ugc-fit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.ugc-fit-copy h2 {
  max-width: 11ch;
  margin: 0 0 26px;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.ugc-fit-copy h2 .it {
  color: var(--ugc-red);
  font-style: italic;
}

.ugc-fit-copy p {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.ugc-fit-card {
  padding: clamp(34px, 5vw, 58px);
  border: 2px solid var(--ugc-ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ugc-red);
  transform: rotate(1deg);
}

.ugc-fit-card .quote-mark {
  display: block;
  height: 50px;
  color: var(--ugc-red);
  font-family: "Cormorant Garamond", serif;
  font-size: 90px;
  line-height: 0.8;
}

.ugc-fit-card p {
  margin: 20px 0 0;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 43px);
  font-style: italic;
  line-height: 1.18;
}

.ugc-process {
  background: var(--paper);
}

.ugc-process .ugc-section-head {
  grid-template-columns: 1fr;
}

.ugc-process .ugc-section-head h2 {
  max-width: none;
  font-size: clamp(38px, 5vw, 72px);
}

.ugc-process .ugc-section-head p {
  max-width: 54ch;
}

.ugc-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ugc-ink);
}

.ugc-step {
  min-height: 290px;
  padding: 34px;
  border-right: 2px solid var(--ugc-ink);
}

.ugc-step:last-child {
  border-right: 0;
}

.ugc-step .num {
  display: block;
  margin-bottom: 52px;
  color: var(--ugc-red);
  font-family: "Caveat", cursive;
  font-size: 38px;
}

.ugc-step h3 {
  margin: 0 0 12px;
  color: var(--ugc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
}

.ugc-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.ugc-contact {
  background: var(--ugc-pink);
}

.ugc-contact .layout {
  align-items: start;
}

.ugc-contact .intro h2 {
  max-width: 9ch;
  color: var(--ugc-ink);
  line-height: 0.92;
}

.ugc-contact .intro p {
  color: #315149;
}

.ugc-contact .intro p a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  vertical-align: middle;
}

.ugc-contact .contact-form {
  border-color: var(--ugc-ink);
  box-shadow: 8px 8px 0 var(--ugc-ink);
}

.ugc-contact .contact-form button {
  background: var(--ugc-red);
}

.ugc-contact .contact-form button:hover {
  background: var(--ugc-ink);
}

.ugc-contact .contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.ugc-contact .contact-form[aria-busy="true"] {
  box-shadow: 5px 5px 0 var(--ugc-ink);
}

.ugc-contact .contact-thanks {
  border: 2px solid var(--ugc-ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ugc-ink);
  color: var(--ugc-ink);
}

.ugc-contact .form-status {
  min-height: 1.5em;
  margin: 4px 0 14px;
  color: var(--ugc-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ugc-contact .form-status.is-error {
  color: #9f2923;
}

@media (max-width: 1050px) {
  .ugc-sticker {
    width: 112px;
    height: 112px;
    right: -20px;
    top: -35px;
    font-size: 19px;
  }

  .ugc-portfolio-grid {
    grid-template-columns: 1fr 0.75fr;
  }

  .ugc-video-card {
    min-height: 700px;
  }
}

@media (max-width: 850px) {
  .ugc-page .nav-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .ugc-page .nav-toggle {
    display: block;
  }

  .ugc-page .nav-cta {
    min-height: 44px;
  }

  .ugc-page .nav-inner > nav {
    position: absolute;
    top: calc(100% - 2px);
    right: var(--gutter);
    left: var(--gutter);
    display: block;
    visibility: hidden;
    z-index: 90;
    padding: 10px;
    border: 1px solid rgba(24, 60, 52, 0.18);
    border-radius: 10px;
    background: var(--cream);
    box-shadow: 7px 9px 0 rgba(24, 60, 52, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .ugc-page .nav-inner > nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .ugc-page .nav-links {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .ugc-page .nav-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(24, 60, 52, 0.12);
  }

  .ugc-page .nav-links li:last-child a {
    border-bottom: 0;
  }

  .ugc-page .nav-links a::after {
    display: none;
  }

  .ugc-hero {
    min-height: auto;
    background: linear-gradient(165deg, var(--cream) 0 72%, var(--ugc-pink) 72% 100%);
  }

  .ugc-hero-grid,
  .ugc-section-head,
  .ugc-offer-grid,
  .ugc-fit-grid {
    grid-template-columns: 1fr;
  }

  .ugc-hero h1 {
    max-width: 9ch;
  }

  .ugc-hero-portrait {
    width: min(80%, 430px);
  }

  .ugc-section-head {
    gap: 22px;
  }

  .ugc-benefit-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .ugc-benefit:nth-child(2),
  .ugc-benefit:nth-child(3) {
    transform: none;
  }

  .ugc-portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .ugc-video-card {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .ugc-offer-price {
    position: static;
  }

  .ugc-rights-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .ugc-page .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 10px 16px;
  }

  .ugc-page .nav-inner > nav {
    right: 16px;
    left: 16px;
  }

  .ugc-page .brandmark {
    min-width: 0;
    gap: 5px;
    font-size: 21px;
    letter-spacing: 0;
  }

  .ugc-page .brandmark .surname {
    display: none;
  }

  .ugc-page .brandmark-logo {
    height: 25px;
  }

  .ugc-page .nav-cta {
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .ugc-page .nav-cta-full {
    display: none;
  }

  .ugc-page .nav-cta-short {
    display: inline;
  }

  .ugc-page section[id] {
    scroll-margin-top: 70px;
  }

  .ugc-contact .intro h2 {
    max-width: 100%;
  }

  .ugc-rights .ugc-section-head h2,
  .ugc-process .ugc-section-head h2 {
    max-width: 100%;
  }

  .ugc-contact .contact-form {
    padding: 28px 22px;
  }

  .ugc-contact .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .ugc-hero-photo {
    border-width: 7px;
    box-shadow: 11px 11px 0 var(--ugc-ink);
  }

  .ugc-sticker {
    right: -34px;
  }

  .ugc-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .ugc-video-card {
    grid-column: auto;
    min-height: 835px;
    padding: 56px 12px 72px;
  }

  .ugc-video-embed {
    min-height: 740px;
  }

  .ugc-placeholder {
    min-height: 310px;
  }

  .ugc-rights-row {
    font-size: 95%;
  }

  .ugc-rights-row > * {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .ugc-rights-row > *:not(:last-child) {
    padding-right: 12px;
  }

  .ugc-rights-row .num {
    width: 38px;
  }

  .ugc-rights-row .price {
    width: 34%;
  }

  .ugc-process-grid {
    grid-template-columns: 1fr;
  }

  .ugc-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--ugc-ink);
  }

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

  .ugc-step .num {
    margin-bottom: 28px;
  }
}

@media (max-width: 360px) {
  .ugc-process .ugc-section-head h2 {
    font-size: clamp(31px, 9.7vw, 35px);
    letter-spacing: -0.025em;
  }

  .ugc-process .ugc-two-line-title > span {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ugc-proof-track {
    animation: none;
  }

  .ugc-page .nav-toggle span,
  .ugc-page .nav-inner > nav {
    transition: none;
  }
}
