:root {
  --pasteis-blue: #3e5483;
  --pasteis-blue-deep: #26365f;
  --pasteis-blue-dark: #17233f;
  --pasteis-gold: #dbae4f;
  --pasteis-sky: #94bce5;
  --pasteis-cream: #f6efe6;
  --pasteis-grey: #e9e9e9;
  --pasteis-ink: #121722;
  --pasteis-white: #fff;
  --pasteis-line: rgba(18, 23, 34, .18);
  --pasteis-line-light: rgba(246, 239, 230, .25);
  --pasteis-gutter: clamp(24px, 4.4vw, 84px);
  --pasteis-section-space: clamp(96px, 10vw, 184px);
  --pasteis-display: var(--display, "Arial Narrow", "Helvetica Neue", Arial, sans-serif);
  --pasteis-sans: var(--sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h, 76px) + 24px);
}

body.pasteis-case {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--pasteis-cream);
  color: var(--pasteis-ink);
  font-family: var(--pasteis-sans);
  text-rendering: optimizeLegibility;
}

.pasteis-case *,
.pasteis-case *::before,
.pasteis-case *::after {
  box-sizing: border-box;
}

.pasteis-case main {
  overflow: hidden;
  overflow: clip;
}

.pasteis-case img,
.pasteis-case svg {
  display: block;
  max-width: 100%;
}

.pasteis-case figure,
.pasteis-case p,
.pasteis-case h1,
.pasteis-case h2,
.pasteis-case h3,
.pasteis-case ul {
  margin: 0;
}

.pasteis-case .shell {
  width: min(100%, 1680px);
  margin-inline: auto;
  padding-inline: var(--pasteis-gutter);
}

.pasteis-case .case-section {
  position: relative;
  padding-block: var(--pasteis-section-space);
}

.pasteis-case h1,
.pasteis-case h2,
.pasteis-case h3,
.pasteis-case .pasteis-hero__lead,
.pasteis-case .scope__credits > span,
.pasteis-case .identity__marks strong {
  font-family: var(--pasteis-display);
  font-weight: 400;
}

.pasteis-case .eyebrow,
.pasteis-case figcaption,
.pasteis-case .case-index,
.pasteis-case .pasteis-hero__top,
.pasteis-case .context__scope,
.pasteis-case .identity__marks span,
.pasteis-case .scope__list span,
.pasteis-case .scope__credits small {
  font-family: var(--pasteis-sans);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pasteis-case .eyebrow {
  font-weight: 600;
}

.pasteis-case figcaption {
  padding-top: 13px;
  color: currentColor;
  opacity: .58;
}

.pasteis-case [data-layout-group="media-caption"] {
  min-width: 0;
}

.pasteis-case [data-layout-group="media-caption"] > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pasteis-case a:focus-visible,
.pasteis-case button:focus-visible {
  outline: 2px solid var(--pasteis-gold);
  outline-offset: 5px;
}

.pasteis-case [data-reveal] {
  opacity: 1;
  transform: none;
}

.js .pasteis-case [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
}

.js .pasteis-case [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.pasteis-case .section-heading,
.pasteis-case .identity__header,
.pasteis-case .packaging__header,
.pasteis-case .spaces__header,
.pasteis-case .communications__header,
.pasteis-case .digital-lab__header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  align-items: start;
}

.pasteis-case .section-heading .eyebrow,
.pasteis-case .identity__header .eyebrow,
.pasteis-case .packaging__header .eyebrow,
.pasteis-case .spaces__header .eyebrow,
.pasteis-case .communications__header .eyebrow,
.pasteis-case .digital-lab__header .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 11px;
  opacity: .56;
}

.pasteis-case .section-heading h2,
.pasteis-case .identity__header h2,
.pasteis-case .packaging__header h2,
.pasteis-case .spaces__header h2,
.pasteis-case .communications__header h2,
.pasteis-case .digital-lab__header h2 {
  grid-column: 4 / -1;
  max-width: 1230px;
  font-size: clamp(56px, 6.45vw, 116px);
  line-height: .92;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.pasteis-case .section-heading > p:last-child,
.pasteis-case .identity__header > p:last-child,
.pasteis-case .packaging__header > p:last-child,
.pasteis-case .spaces__header > p:last-child,
.pasteis-case .communications__header > p:last-child,
.pasteis-case .digital-lab__header > p:last-child {
  grid-column: 9 / -1;
  margin-top: clamp(34px, 4vw, 68px);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.45;
}

/* Hero */
.pasteis-case .pasteis-hero {
  position: relative;
  min-height: max(720px, calc(100svh - var(--header-h, 76px)));
  overflow: hidden;
  isolation: isolate;
  background: var(--pasteis-blue-dark);
  color: var(--pasteis-cream);
}

.pasteis-case .pasteis-hero__media,
.pasteis-case .pasteis-hero__shade {
  position: absolute;
  inset: 0;
}

.pasteis-case .pasteis-hero__media {
  z-index: -4;
  background: var(--pasteis-blue-dark);
}

.pasteis-case .pasteis-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(.94) contrast(1.02);
}

.pasteis-case .pasteis-hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(20, 29, 53, .82) 0%, rgba(20, 29, 53, .36) 44%, rgba(20, 29, 53, .14) 70%, rgba(20, 29, 53, .4) 100%),
    linear-gradient(180deg, rgba(18, 29, 54, .34) 0%, transparent 28%, rgba(18, 29, 54, .16) 58%, rgba(18, 29, 54, .88) 100%);
}

.pasteis-case .pasteis-hero::after {
  position: absolute;
  z-index: 3;
  right: var(--pasteis-gutter);
  bottom: 20px;
  width: clamp(120px, 15vw, 270px);
  height: 1px;
  background: rgba(246, 239, 230, .65);
  content: "";
}

.pasteis-case .pasteis-hero__top {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(26px, 3.2vw, 52px);
  color: rgba(246, 239, 230, .76);
}

.pasteis-case .pasteis-hero__top p {
  max-width: 720px;
}

.pasteis-case .pasteis-hero__top span {
  white-space: nowrap;
}

.pasteis-case .pasteis-hero__lockup {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.pasteis-case .pasteis-hero__lockup > img {
  width: clamp(210px, 20vw, 350px);
  height: auto;
  background: rgba(246, 239, 230, .94);
  box-shadow:
    0 0 0 clamp(22px, 2.6vw, 45px) rgba(246, 239, 230, .94),
    0 20px 80px 20px rgba(9, 14, 29, .25);
  outline: 1px solid rgba(246, 239, 230, .58);
  outline-offset: clamp(22px, 2.6vw, 45px);
}

.pasteis-case .pasteis-hero__object {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  filter: drop-shadow(0 28px 34px rgba(9, 14, 29, .26));
}

.pasteis-case .pasteis-hero__object--pastry {
  top: 14%;
  right: -4.5%;
  width: clamp(200px, 22vw, 420px);
  transform: rotate(8deg);
  animation: pasteis-float-pastry 8s ease-in-out infinite alternate;
}

.pasteis-case .pasteis-hero__object--cup {
  right: 24.5%;
  bottom: -17%;
  width: clamp(100px, 11vw, 198px);
  transform: rotate(-8deg);
  animation: pasteis-float-cup 9s 1s ease-in-out infinite alternate;
}

.pasteis-case .pasteis-hero__object--vespa {
  right: 5%;
  bottom: 11%;
  width: clamp(150px, 18vw, 330px);
  transform: rotate(-2deg);
  animation: pasteis-float-vespa 10s .6s ease-in-out infinite alternate;
}

@keyframes pasteis-float-pastry {
  from { transform: translate3d(0, 0, 0) rotate(8deg); }
  to { transform: translate3d(-9px, 16px, 0) rotate(5deg); }
}

@keyframes pasteis-float-cup {
  from { transform: translate3d(0, 0, 0) rotate(-8deg); }
  to { transform: translate3d(5px, -14px, 0) rotate(-5deg); }
}

@keyframes pasteis-float-vespa {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(-16px, -8px, 0) rotate(1deg); }
}

.pasteis-case .pasteis-hero__bottom {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: clamp(34px, 5.8vw, 92px);
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  gap: clamp(40px, 7vw, 130px);
  align-items: end;
}

.pasteis-case .pasteis-hero__lead {
  max-width: 650px;
  font-size: clamp(42px, 4.3vw, 76px);
  line-height: .94;
  letter-spacing: -.035em;
}

.pasteis-case .pasteis-hero__copy {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(246, 239, 230, .84);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.48;
}

.pasteis-case .pasteis-hero__bottom > a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(246, 239, 230, .7);
  color: inherit;
  font-size: 13px;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.pasteis-case .pasteis-hero__bottom > a span {
  font-size: 18px;
  transition: transform .25s ease;
}

.pasteis-case .pasteis-hero__bottom > a:hover span {
  transform: translateY(4px);
}

/* Case index */
.pasteis-case .case-index {
  position: relative;
  z-index: 30;
  top: auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-bottom: 1px solid rgba(18, 23, 34, .2);
  background: rgba(246, 239, 230, .94);
  backdrop-filter: blur(15px);
}

.pasteis-case .case-index a {
  min-width: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px clamp(12px, 1.4vw, 26px);
  border-right: 1px solid var(--pasteis-line);
  color: var(--pasteis-ink);
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}

.pasteis-case .case-index a:last-child {
  border-right: 0;
}

.pasteis-case .case-index a span {
  flex: 0 0 auto;
  color: var(--pasteis-blue);
}

.pasteis-case .case-index a:is(:hover, :focus-visible) {
  background: var(--pasteis-blue);
  color: var(--pasteis-cream);
}

.pasteis-case .case-index a:is(:hover, :focus-visible) span {
  color: var(--pasteis-gold);
}

/* Context */
.pasteis-case .context {
  background: var(--pasteis-cream);
}

.pasteis-case .context__statement {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(120px, .55fr) minmax(280px, 1.25fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin: clamp(72px, 8vw, 138px) 0 0 auto;
  padding: clamp(30px, 4vw, 66px);
  background: var(--pasteis-blue);
  color: var(--pasteis-cream);
}

.pasteis-case .context__statement > span {
  align-self: start;
  color: var(--pasteis-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pasteis-case .context__statement strong {
  font-family: var(--pasteis-display);
  font-size: clamp(54px, 6.1vw, 108px);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.045em;
}

.pasteis-case .context__statement p {
  max-width: 430px;
  color: rgba(246, 239, 230, .8);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.47;
}

.pasteis-case .context__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px);
  margin-top: clamp(72px, 9vw, 150px);
}

.pasteis-case .context__scope {
  grid-column: 1 / span 3;
  display: flex;
  align-content: start;
  flex-wrap: wrap;
  gap: 8px;
}

.pasteis-case .context__scope span {
  padding: 8px 11px;
  border: 1px solid var(--pasteis-line);
  border-radius: 999px;
  color: var(--pasteis-blue);
}

.pasteis-case .context__copy {
  grid-column: 5 / -1;
  columns: 2;
  column-gap: clamp(30px, 4vw, 70px);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.52;
}

.pasteis-case .context__copy p {
  margin: 0 0 1.4em;
  break-inside: avoid;
}

.pasteis-case .context__moodboard {
  grid-column: 1 / -1;
  margin-top: clamp(48px, 6vw, 104px);
}

.pasteis-case .context__moodboard img {
  background: var(--pasteis-white);
}

/* Identity */
.pasteis-case .identity {
  overflow: hidden;
  background: var(--pasteis-blue);
  color: var(--pasteis-cream);
  isolation: isolate;
}

.pasteis-case .identity__header .eyebrow,
.pasteis-case .identity__header > p:last-child {
  color: rgba(246, 239, 230, .72);
}

.pasteis-case .identity__marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(74px, 8vw, 136px);
  border-top: 1px solid var(--pasteis-line-light);
  border-left: 1px solid var(--pasteis-line-light);
}

.pasteis-case .identity__marks article {
  position: relative;
  min-width: 0;
  min-height: clamp(410px, 34vw, 610px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3.2vw, 54px);
  border-right: 1px solid var(--pasteis-line-light);
  border-bottom: 1px solid var(--pasteis-line-light);
  overflow: hidden;
}

.pasteis-case .identity__marks article::after {
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: rgba(246, 239, 230, .08);
  content: "";
  transition: height .45s cubic-bezier(.2, .8, .2, 1);
}

.pasteis-case .identity__marks article:hover::after {
  height: 100%;
}

.pasteis-case .identity__marks img,
.pasteis-case .identity__marks span,
.pasteis-case .identity__marks strong {
  position: relative;
  z-index: 1;
}

.pasteis-case .identity__marks img {
  align-self: center;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.pasteis-case .identity__logo img {
  width: min(76%, 310px);
  filter: brightness(0) invert(1);
}

.pasteis-case .identity__crest img {
  width: min(49%, 210px);
}

.pasteis-case .identity__pattern img {
  width: min(66%, 300px);
}

.pasteis-case .identity__marks span {
  position: absolute;
  top: clamp(22px, 2.6vw, 42px);
  left: clamp(24px, 3vw, 48px);
  color: var(--pasteis-gold);
}

.pasteis-case .identity__marks strong {
  font-size: clamp(30px, 3vw, 52px);
  line-height: .96;
}

.pasteis-case .identity__boards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3vw, 54px);
  margin-top: clamp(64px, 8vw, 130px);
}

.pasteis-case .identity__boards figure {
  min-width: 0;
}

.pasteis-case .identity__boards img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--pasteis-white);
}

.pasteis-case .identity__boards figcaption {
  color: rgba(246, 239, 230, .75);
}

.pasteis-case .identity__logic {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  margin-top: clamp(76px, 9vw, 150px);
  border-top: 1px solid var(--pasteis-line-light);
  border-left: 1px solid var(--pasteis-line-light);
}

.pasteis-case .identity__logic > article {
  min-width: 0;
  padding: clamp(30px, 4.5vw, 76px);
  border-right: 1px solid var(--pasteis-line-light);
  border-bottom: 1px solid var(--pasteis-line-light);
}

.pasteis-case .identity__logic > article > span {
  color: var(--pasteis-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pasteis-case .identity__logic h3 {
  max-width: 760px;
  margin-top: clamp(70px, 8vw, 135px);
  font-size: clamp(44px, 5vw, 86px);
  line-height: .9;
  letter-spacing: -.04em;
}

.pasteis-case .identity__logic article p {
  max-width: 670px;
  margin-top: 32px;
  color: rgba(246, 239, 230, .76);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.pasteis-case .identity__palette {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pasteis-case .identity__palette > span {
  position: relative;
  min-width: 0;
  min-height: clamp(180px, 18vw, 310px);
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--pasteis-line-light);
  border-bottom: 1px solid var(--pasteis-line-light);
  background: var(--swatch);
  color: var(--pasteis-ink);
}

.pasteis-case .identity__palette > span:first-child {
  color: var(--pasteis-cream);
}

.pasteis-case .identity__palette b {
  font-family: var(--pasteis-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

/* Packaging */
.pasteis-case .packaging {
  overflow: hidden;
  background: var(--pasteis-gold);
  isolation: isolate;
}

.pasteis-case .packaging::before {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: 5%;
  width: min(40vw, 650px);
  aspect-ratio: 1;
  border: clamp(25px, 3vw, 50px) solid rgba(246, 239, 230, .2);
  border-radius: 50%;
  content: "";
}

.pasteis-case .packaging__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 58px);
  align-items: start;
  margin-top: clamp(76px, 8vw, 140px);
}

.pasteis-case .packaging__grid figure {
  min-width: 0;
}

.pasteis-case .packaging__grid figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--pasteis-cream);
}

.pasteis-case .packaging__box {
  grid-column: 1 / span 8;
}

.pasteis-case .packaging__cups {
  grid-column: 8 / -1;
  margin-top: clamp(110px, 12vw, 220px);
}

.pasteis-case .packaging__retail {
  grid-column: 3 / span 6;
  margin-top: clamp(20px, 4vw, 70px);
}

.pasteis-case .packaging__object {
  position: absolute;
  z-index: 2;
  right: max(-20px, calc((100vw - 1680px) / 2));
  bottom: clamp(50px, 7vw, 125px);
  width: clamp(95px, 11vw, 205px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 32px rgba(56, 42, 18, .22));
  transform: rotate(8deg);
}

.pasteis-case .packaging__evolution {
  position: relative;
  z-index: 3;
  width: min(100%, 850px);
  display: grid;
  grid-template-columns: minmax(140px, .45fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 70px);
  margin-top: clamp(68px, 8vw, 130px);
  padding-top: clamp(26px, 3vw, 46px);
  border-top: 1px solid rgba(18, 23, 34, .32);
}

.pasteis-case .packaging__evolution span {
  color: var(--pasteis-blue-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pasteis-case .packaging__evolution p {
  max-width: 640px;
  font-size: clamp(19px, 1.6vw, 28px);
  line-height: 1.35;
}

/* Spaces */
.pasteis-case .spaces {
  overflow: hidden;
  background: var(--pasteis-sky);
  isolation: isolate;
}

.pasteis-case .spaces__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
  margin-top: clamp(76px, 8vw, 140px);
}

.pasteis-case .spaces__grid figure {
  min-width: 0;
}

.pasteis-case .spaces__grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pasteis-case .spaces__primary {
  grid-column: 1 / span 9;
}

.pasteis-case .spaces__secondary {
  grid-column: 8 / -1;
  margin-top: clamp(110px, 13vw, 230px);
}

.pasteis-case .spaces__facade {
  grid-column: 2 / span 7;
  margin-top: clamp(40px, 6vw, 100px);
}

.pasteis-case .spaces__vespa {
  position: absolute;
  z-index: 2;
  right: clamp(12px, 3vw, 60px);
  bottom: clamp(50px, 7vw, 125px);
  width: clamp(190px, 23vw, 430px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 30px rgba(20, 39, 65, .2));
  transform: rotate(-2deg);
}

/* Communications */
.pasteis-case .communications {
  background:
    radial-gradient(circle at 89% 12%, rgba(148, 188, 229, .18), transparent 29%),
    var(--pasteis-blue-dark);
  color: var(--pasteis-cream);
}

.pasteis-case .communications__header .eyebrow,
.pasteis-case .communications__header > p:last-child {
  color: rgba(246, 239, 230, .72);
}

.pasteis-case .communications__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 54px);
  align-items: start;
  margin-top: clamp(76px, 8vw, 140px);
}

.pasteis-case .communications__grid figure {
  min-width: 0;
}

.pasteis-case .communications__grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pasteis-case .communications__posters {
  grid-column: 1 / -1;
}

.pasteis-case .communications__food-one {
  grid-column: 1 / span 7;
  margin-top: clamp(30px, 4vw, 70px);
}

.pasteis-case .communications__food-two {
  grid-column: 8 / -1;
  margin-top: clamp(130px, 13vw, 250px);
}

.pasteis-case .communications figcaption {
  color: rgba(246, 239, 230, .78);
}

/* Live site and brandbook */
.pasteis-case .digital-lab {
  overflow: hidden;
  background: var(--pasteis-cream);
  isolation: isolate;
}

.pasteis-case .digital-lab::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -12vw;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  border: clamp(28px, 3.2vw, 58px) solid rgba(62, 84, 131, .08);
  border-radius: 50%;
  content: "";
}

.pasteis-case .live-site {
  margin-top: clamp(70px, 8vw, 136px);
  border: 1px solid rgba(18, 23, 34, .28);
  background: var(--pasteis-blue-dark);
  color: var(--pasteis-cream);
}

.pasteis-case .live-site__bar,
.pasteis-case .live-site > footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pasteis-case .live-site__bar > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pasteis-case .live-site__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pasteis-gold);
}

.pasteis-case .live-site__bar span:nth-child(2) {
  background: var(--pasteis-sky);
}

.pasteis-case .live-site__bar span:nth-child(3) {
  background: var(--pasteis-cream);
}

.pasteis-case .live-site__bar strong {
  margin-left: 7px;
  font: inherit;
}

.pasteis-case .live-site a {
  color: inherit;
  text-underline-offset: 4px;
}

.pasteis-case .live-site__viewport {
  position: relative;
  height: clamp(520px, 52vw, 850px);
  overflow: hidden;
  background: #fff;
}

.pasteis-case .live-site__viewport iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #fff;
}

.pasteis-case .live-site__loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--pasteis-cream);
  color: var(--pasteis-blue-deep);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pasteis-case .live-site__loading[hidden] {
  display: none;
}

.pasteis-case .live-site > footer {
  color: rgba(246, 239, 230, .68);
}

.pasteis-case .brandbook-flip {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 7vw, 126px);
  align-items: center;
  margin-top: clamp(100px, 11vw, 190px);
}

.pasteis-case .brandbook-flip__copy,
.pasteis-case .brandbook-flip__media {
  min-width: 0;
}

.pasteis-case .brandbook-flip__copy .eyebrow {
  color: var(--pasteis-blue);
}

.pasteis-case .brandbook-flip__copy h3 {
  margin-top: 30px;
  font-size: clamp(55px, 5.7vw, 104px);
  line-height: .88;
  letter-spacing: -.045em;
}

.pasteis-case .brandbook-flip__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 38px;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.48;
}

.pasteis-case .brandbook-flip__copy > small {
  display: block;
  margin-top: 18px;
  color: rgba(18, 23, 34, .5);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pasteis-case .brandbook-flip__media {
  position: relative;
  overflow: hidden;
  width: min(100%, 640px);
  justify-self: end;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(18, 23, 34, .24);
  background: #fff;
}

.pasteis-case .brandbook-flip__media video {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.pasteis-case .brandbook-flip__media figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 15px 18px;
  border-top: 1px solid rgba(18, 23, 34, .18);
  background: var(--pasteis-cream);
  color: var(--pasteis-blue-deep);
  opacity: 1;
}

/* Scope */
.pasteis-case .scope {
  overflow: hidden;
  background: var(--pasteis-grey);
  isolation: isolate;
}

.pasteis-case .scope__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 54px);
}

.pasteis-case .scope__grid > header {
  grid-column: 1 / span 8;
}

.pasteis-case .scope__grid > header h2 {
  margin-top: 28px;
  font-size: clamp(58px, 6.4vw, 114px);
  line-height: .92;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.pasteis-case .scope__grid > header > p:last-child {
  max-width: 670px;
  margin-top: 36px;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.5;
}

.pasteis-case .scope__copy {
  grid-column: 9 / -1;
  padding-top: clamp(44px, 7vw, 128px);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.5;
}

.pasteis-case .scope__copy p + p {
  margin-top: 1.45em;
}

.pasteis-case .scope__list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin-top: clamp(74px, 8vw, 130px);
  border-top: 1px solid var(--pasteis-line);
  border-left: 1px solid var(--pasteis-line);
  list-style: none;
}

.pasteis-case .scope__list li {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(20px, 2.2vw, 34px);
  border-right: 1px solid var(--pasteis-line);
  border-bottom: 1px solid var(--pasteis-line);
}

.pasteis-case .scope__list span {
  color: var(--pasteis-blue);
}

.pasteis-case .scope__list strong {
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.15;
  font-weight: 500;
}

.pasteis-case .scope__credits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  gap: 24px;
  align-items: end;
  padding-top: clamp(70px, 8vw, 130px);
}

.pasteis-case .scope__credits > span {
  color: var(--pasteis-blue);
  font-size: clamp(92px, 12vw, 220px);
  line-height: .72;
  letter-spacing: -.06em;
}

.pasteis-case .scope__credits p {
  font-size: clamp(25px, 2.5vw, 44px);
  line-height: 1.05;
}

.pasteis-case .scope__credits small {
  align-self: end;
  opacity: .56;
}

/* Related case */
.pasteis-case .related {
  background: var(--pasteis-gold);
}

.pasteis-case .related__grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 7vw, 130px);
  align-items: center;
}

.pasteis-case .related__grid > * {
  min-width: 0;
}

.pasteis-case .related__grid h2 {
  margin-top: 24px;
  font-size: clamp(92px, 11vw, 205px);
  line-height: .78;
  letter-spacing: -.055em;
}

.pasteis-case .related__grid > div > p:last-of-type {
  max-width: 550px;
  margin-top: 40px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
}

.pasteis-case .text-link {
  display: inline-flex;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.pasteis-case .related__grid > a {
  position: relative;
  display: block;
  color: var(--pasteis-cream);
  overflow: hidden;
  text-decoration: none;
}

.pasteis-case .related__grid > a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.2, .75, .25, 1), filter .4s ease;
}

.pasteis-case .related__grid > a span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 13px;
  background: rgba(18, 23, 34, .82);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pasteis-case .related__grid > a:hover img {
  filter: saturate(1.08);
  transform: scale(1.015);
}

/* Contact and footer */
.pasteis-case .case-contact {
  --text-gradient: linear-gradient(98deg, var(--pasteis-cream), var(--pasteis-sky) 55%, var(--pasteis-gold));
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 11vw, 190px) 34px;
  background:
    radial-gradient(circle at 92% 3%, rgba(148, 188, 229, .22), transparent 31%),
    var(--pasteis-blue-dark);
  color: var(--pasteis-cream);
  isolation: isolate;
}

.pasteis-case .contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: clamp(60px, 8vw, 150px);
}

.pasteis-case .contact__main,
.pasteis-case .contact__channels {
  min-width: 0;
}

.pasteis-case .contact__main .eyebrow {
  color: var(--pasteis-gold);
}

.pasteis-case .contact__main h2 {
  max-width: 1020px;
  margin-top: 26px;
  background: var(--text-gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(58px, 6.25vw, 112px);
  line-height: .91;
  letter-spacing: -.045em;
}

.pasteis-case .contact__main > p:last-of-type {
  max-width: 670px;
  margin-top: 36px;
  color: rgba(246, 239, 230, .76);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.pasteis-case .case-contact .button {
  margin-top: 38px;
  background: var(--pasteis-gold);
  color: var(--pasteis-ink);
}

.pasteis-case .contact__channels {
  display: grid;
  align-content: end;
  font-style: normal;
}

.pasteis-case .contact__channels > a,
.pasteis-case .contact__phone,
.pasteis-case .contact__office {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid var(--pasteis-line-light);
  color: inherit;
  text-decoration: none;
}

.pasteis-case .contact__channels span,
.pasteis-case .contact__phone > span,
.pasteis-case .contact__office > span {
  grid-column: 1 / -1;
  color: rgba(246, 239, 230, .55);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pasteis-case .contact__channels strong,
.pasteis-case .contact__phone strong,
.pasteis-case .contact__office strong {
  min-width: 0;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.35;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.pasteis-case .contact__channels i {
  font-style: normal;
}

.pasteis-case .contact__phone button {
  align-self: end;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(246, 239, 230, .62);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.pasteis-case .contact__office strong {
  grid-column: 1 / -1;
}

.pasteis-case .site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  margin-top: clamp(100px, 12vw, 200px);
  padding-top: 28px;
  border-top: 1px solid var(--pasteis-line-light);
  color: rgba(246, 239, 230, .65);
  font-size: 12px;
}

.pasteis-case .site-footer > a img {
  width: 132px;
  height: auto;
}

.pasteis-case .site-footer nav {
  display: flex;
  gap: 24px;
}

.pasteis-case .site-footer nav a {
  color: inherit;
  text-decoration: none;
}

.pasteis-case .copy-feedback {
  background: var(--pasteis-gold);
  color: var(--pasteis-ink);
}

@media (max-width: 1240px) {
  .pasteis-case .pasteis-hero__object--pastry {
    right: -7%;
  }

  .pasteis-case .pasteis-hero__object--vespa {
    right: 3%;
    bottom: 14%;
  }

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

  .pasteis-case .case-index a:nth-child(4n) {
    border-right: 0;
  }

  .pasteis-case .case-index a:nth-child(-n + 4) {
    border-bottom: 1px solid var(--pasteis-line);
  }

  .pasteis-case .context__copy {
    grid-column: 4 / -1;
  }

  .pasteis-case .packaging__object,
  .pasteis-case .spaces__vespa {
    opacity: .88;
  }

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

@media (max-width: 980px) {
  .pasteis-case .section-heading,
  .pasteis-case .identity__header,
  .pasteis-case .packaging__header,
  .pasteis-case .spaces__header,
  .pasteis-case .communications__header,
  .pasteis-case .digital-lab__header {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .pasteis-case .section-heading .eyebrow,
  .pasteis-case .identity__header .eyebrow,
  .pasteis-case .packaging__header .eyebrow,
  .pasteis-case .spaces__header .eyebrow,
  .pasteis-case .communications__header .eyebrow,
  .pasteis-case .digital-lab__header .eyebrow {
    grid-column: 1 / span 2;
  }

  .pasteis-case .section-heading h2,
  .pasteis-case .identity__header h2,
  .pasteis-case .packaging__header h2,
  .pasteis-case .spaces__header h2,
  .pasteis-case .communications__header h2,
  .pasteis-case .digital-lab__header h2 {
    grid-column: 3 / -1;
  }

  .pasteis-case .section-heading > p:last-child,
  .pasteis-case .identity__header > p:last-child,
  .pasteis-case .packaging__header > p:last-child,
  .pasteis-case .spaces__header > p:last-child,
  .pasteis-case .communications__header > p:last-child,
  .pasteis-case .digital-lab__header > p:last-child {
    grid-column: 5 / -1;
  }

  .pasteis-case .pasteis-hero__lockup {
    top: 17%;
  }

  .pasteis-case .pasteis-hero__object--cup {
    right: 22%;
    width: 120px;
  }

  .pasteis-case .pasteis-hero__object--vespa {
    width: 230px;
  }

  .pasteis-case .pasteis-hero__bottom {
    grid-template-columns: minmax(0, 600px) auto;
  }

  .pasteis-case .context__scope {
    grid-column: 1 / -1;
  }

  .pasteis-case .context__statement {
    grid-template-columns: minmax(110px, .45fr) minmax(250px, 1.1fr) minmax(220px, .9fr);
  }

  .pasteis-case .context__copy {
    grid-column: 1 / -1;
    margin-top: 22px;
  }

  .pasteis-case .identity__marks {
    grid-template-columns: 1fr 1fr;
  }

  .pasteis-case .identity__marks article:last-child {
    grid-column: 1 / -1;
  }

  .pasteis-case .identity__marks article:last-child img {
    max-width: 260px;
  }

  .pasteis-case .identity__boards {
    grid-template-columns: 1fr;
  }

  .pasteis-case .identity__logic {
    grid-template-columns: 1fr;
  }

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

  .pasteis-case .packaging__box {
    grid-column: 1 / span 9;
  }

  .pasteis-case .packaging__cups {
    grid-column: 6 / -1;
  }

  .pasteis-case .packaging__retail {
    grid-column: 2 / span 7;
  }

  .pasteis-case .spaces__primary {
    grid-column: 1 / span 10;
  }

  .pasteis-case .spaces__secondary {
    grid-column: 6 / -1;
  }

  .pasteis-case .spaces__facade {
    grid-column: 1 / span 8;
  }

  .pasteis-case .scope__grid > header {
    grid-column: 1 / span 8;
  }

  .pasteis-case .scope__copy {
    grid-column: 9 / -1;
  }

  .pasteis-case .scope__credits {
    grid-template-columns: 1fr 1.5fr;
  }

  .pasteis-case .scope__credits small {
    grid-column: 2;
  }

  .pasteis-case .contact__grid {
    grid-template-columns: 1fr;
  }

  .pasteis-case .brandbook-flip {
    grid-template-columns: 1fr;
  }

  .pasteis-case .brandbook-flip__copy {
    max-width: 760px;
  }

  .pasteis-case .contact__channels {
    grid-template-columns: 1fr 1fr;
  }

  .pasteis-case .contact__channels > a,
  .pasteis-case .contact__phone,
  .pasteis-case .contact__office {
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --pasteis-gutter: 20px;
    --pasteis-section-space: 88px;
  }

  html {
    scroll-padding-top: 20px;
  }

  .pasteis-case .case-section {
    min-width: 0;
  }

  .pasteis-case .section-heading,
  .pasteis-case .identity__header,
  .pasteis-case .packaging__header,
  .pasteis-case .spaces__header,
  .pasteis-case .communications__header,
  .pasteis-case .digital-lab__header {
    display: block;
  }

  .pasteis-case .section-heading .eyebrow,
  .pasteis-case .identity__header .eyebrow,
  .pasteis-case .packaging__header .eyebrow,
  .pasteis-case .spaces__header .eyebrow,
  .pasteis-case .communications__header .eyebrow,
  .pasteis-case .digital-lab__header .eyebrow {
    padding-top: 0;
  }

  .pasteis-case .section-heading h2,
  .pasteis-case .identity__header h2,
  .pasteis-case .packaging__header h2,
  .pasteis-case .spaces__header h2,
  .pasteis-case .communications__header h2,
  .pasteis-case .digital-lab__header h2 {
    margin-top: 26px;
    font-size: clamp(48px, 13.6vw, 74px);
    line-height: .92;
  }

  .pasteis-case .section-heading > p:last-child,
  .pasteis-case .identity__header > p:last-child,
  .pasteis-case .packaging__header > p:last-child,
  .pasteis-case .spaces__header > p:last-child,
  .pasteis-case .communications__header > p:last-child,
  .pasteis-case .digital-lab__header > p:last-child {
    margin-top: 30px;
    font-size: 17px;
  }

  .pasteis-case .pasteis-hero {
    min-height: max(700px, calc(100svh - var(--header-h, 76px)));
    background:
      linear-gradient(180deg, var(--pasteis-blue-dark), var(--pasteis-blue) 54%, var(--pasteis-blue-dark));
  }

  .pasteis-case .pasteis-hero__media {
    top: 0;
    bottom: auto;
    height: 48%;
    display: flex;
    align-items: flex-start;
    background: var(--pasteis-blue-dark);
  }

  .pasteis-case .pasteis-hero__media img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
    transform: none;
  }

  .pasteis-case .pasteis-hero__shade {
    background:
      linear-gradient(180deg, rgba(19, 29, 53, .16) 0%, rgba(19, 29, 53, .12) 28%, var(--pasteis-blue-dark) 54%, rgba(23, 35, 63, .98) 100%);
  }

  .pasteis-case .pasteis-hero::before {
    right: -22%;
    left: auto;
    width: 84vw;
    background-position: center;
    background-size: contain;
    opacity: .08;
  }

  .pasteis-case .pasteis-hero::after {
    display: none;
  }

  .pasteis-case .pasteis-hero__top {
    display: block;
    padding-top: 22px;
    padding-right: 110px;
    font-size: 9px;
  }

  .pasteis-case .pasteis-hero__top span {
    display: block;
    margin-top: 9px;
  }

  .pasteis-case .pasteis-hero__lockup {
    top: 23%;
    padding-inline: var(--pasteis-gutter);
  }

  .pasteis-case .pasteis-hero__lockup > img {
    width: clamp(145px, 42vw, 190px);
    box-shadow:
      0 0 0 19px rgba(246, 239, 230, .94),
      0 18px 54px 12px rgba(9, 14, 29, .25);
    outline-offset: 19px;
  }

  .pasteis-case .pasteis-hero__object--pastry {
    top: 18%;
    right: -11%;
    width: clamp(135px, 40vw, 190px);
  }

  .pasteis-case .pasteis-hero__object--cup {
    display: none;
  }

  .pasteis-case .pasteis-hero__object--vespa {
    right: -6%;
    bottom: 29%;
    width: clamp(145px, 43vw, 210px);
    opacity: .9;
  }

  .pasteis-case .pasteis-hero__bottom {
    bottom: 28px;
    display: block;
  }

  .pasteis-case .pasteis-hero__lead {
    max-width: 88%;
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .pasteis-case .pasteis-hero__copy {
    max-width: 92%;
    margin-top: 18px;
    font-size: 14px;
  }

  .pasteis-case .pasteis-hero__bottom > a {
    margin-top: 24px;
    justify-self: auto;
    font-size: 10px;
  }

  .pasteis-case .case-index {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    backdrop-filter: none;
  }

  .pasteis-case .case-index a {
    min-height: 68px;
    padding: 14px 12px;
    font-size: 9px;
  }

  .pasteis-case .case-index a:nth-child(4n) {
    border-right: 1px solid var(--pasteis-line);
  }

  .pasteis-case .case-index a:nth-child(2n) {
    border-right: 0;
  }

  .pasteis-case .case-index a:last-child {
    border-right: 1px solid var(--pasteis-line);
  }

  .pasteis-case .case-index a:nth-child(-n + 6) {
    border-bottom: 1px solid var(--pasteis-line);
  }

  .pasteis-case .context__grid {
    display: block;
    margin-top: 58px;
  }

  .pasteis-case .context__statement {
    width: 100%;
    display: block;
    margin-top: 58px;
    padding: 28px 22px 32px;
  }

  .pasteis-case .context__statement strong {
    display: block;
    margin-top: 58px;
    font-size: clamp(54px, 17vw, 74px);
  }

  .pasteis-case .context__statement p {
    margin-top: 28px;
    font-size: 16px;
  }

  .pasteis-case .context__scope {
    margin-bottom: 48px;
  }

  .pasteis-case .context__copy {
    columns: auto;
    margin-top: 0;
    font-size: 17px;
  }

  .pasteis-case .context__moodboard {
    margin-top: 54px;
  }

  .pasteis-case .identity__marks {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .pasteis-case .identity__marks article,
  .pasteis-case .identity__marks article:last-child {
    grid-column: auto;
    min-height: 330px;
  }

  .pasteis-case .identity__marks article:last-child img {
    max-width: 190px;
  }

  .pasteis-case .identity__marks strong {
    font-size: 34px;
  }

  .pasteis-case .identity__boards {
    gap: 48px;
    margin-top: 58px;
  }

  .pasteis-case .identity__logic {
    display: block;
    margin-top: 58px;
  }

  .pasteis-case .identity__logic > article {
    padding: 28px 22px 34px;
  }

  .pasteis-case .identity__logic h3 {
    margin-top: 58px;
    font-size: clamp(44px, 13vw, 64px);
  }

  .pasteis-case .identity__logic article p {
    margin-top: 26px;
    font-size: 16px;
  }

  .pasteis-case .identity__palette {
    grid-template-columns: 1fr 1fr;
  }

  .pasteis-case .identity__palette > span {
    min-height: 150px;
    padding: 18px;
  }

  .pasteis-case .packaging__grid,
  .pasteis-case .spaces__grid,
  .pasteis-case .communications__grid {
    display: block;
    margin-top: 58px;
  }

  .pasteis-case .packaging__grid figure,
  .pasteis-case .spaces__grid figure,
  .pasteis-case .communications__grid figure {
    width: 100%;
    margin: 0 0 48px;
  }

  .pasteis-case .packaging__retail {
    width: 82% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .pasteis-case .packaging__object {
    right: -28px;
    bottom: 38px;
    width: 92px;
    opacity: .78;
  }

  .pasteis-case .packaging__evolution {
    display: block;
    margin-top: 54px;
    padding-top: 24px;
  }

  .pasteis-case .packaging__evolution p {
    margin-top: 28px;
    font-size: 19px;
  }

  .pasteis-case .spaces__vespa {
    right: -30px;
    bottom: 35px;
    width: 170px;
    opacity: .65;
  }

  .pasteis-case .communications__food-two {
    width: 82% !important;
    margin-left: auto !important;
  }

  .pasteis-case .live-site {
    margin-top: 58px;
  }

  .pasteis-case .live-site__bar,
  .pasteis-case .live-site > footer {
    align-items: flex-start;
    padding: 12px;
  }

  .pasteis-case .live-site__bar > div span {
    display: none;
  }

  .pasteis-case .live-site__bar strong {
    margin-left: 0;
  }

  .pasteis-case .live-site__viewport {
    height: min(72svh, 660px);
  }

  .pasteis-case .live-site > footer {
    display: grid;
  }

  .pasteis-case .brandbook-flip {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 88px;
  }

  .pasteis-case .brandbook-flip__copy h3 {
    margin-top: 26px;
    font-size: clamp(49px, 13vw, 70px);
  }

  .pasteis-case .brandbook-flip__copy > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 17px;
  }

  .pasteis-case .brandbook-flip__media {
    width: 100%;
  }

  .pasteis-case .scope__grid {
    display: block;
  }

  .pasteis-case .scope__grid > header h2 {
    margin-top: 24px;
    font-size: clamp(50px, 13.6vw, 74px);
  }

  .pasteis-case .scope__grid > header > p:last-child {
    margin-top: 28px;
    font-size: 17px;
  }

  .pasteis-case .scope__copy {
    padding-top: 52px;
    font-size: 17px;
  }

  .pasteis-case .scope__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
  }

  .pasteis-case .scope__list li {
    min-height: 136px;
    padding: 19px;
  }

  .pasteis-case .scope__list strong {
    font-size: 16px;
  }

  .pasteis-case .scope__credits {
    display: block;
    padding-top: 72px;
  }

  .pasteis-case .scope__credits > span {
    font-size: 36vw;
  }

  .pasteis-case .scope__credits p {
    margin-top: 32px;
    font-size: 31px;
  }

  .pasteis-case .scope__credits small {
    display: block;
    margin-top: 18px;
  }

  .pasteis-case .related__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .pasteis-case .related__grid h2 {
    font-size: 29vw;
  }

  .pasteis-case .related__grid > div > p:last-of-type {
    margin-top: 30px;
    font-size: 17px;
  }

  .pasteis-case .case-contact {
    padding-block: 88px 24px;
  }

  .pasteis-case .contact__grid {
    display: block;
  }

  .pasteis-case .contact__main h2 {
    font-size: clamp(48px, 13.4vw, 72px);
  }

  .pasteis-case .contact__main > p:last-of-type {
    font-size: 17px;
  }

  .pasteis-case .contact__channels {
    display: block;
    margin-top: 78px;
  }

  .pasteis-case .contact__channels > a,
  .pasteis-case .contact__phone,
  .pasteis-case .contact__office {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-right: 0;
  }

  .pasteis-case .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 88px;
  }

  .pasteis-case .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .pasteis-case .pasteis-hero {
    min-height: max(720px, calc(100svh - var(--header-h, 76px)));
  }

  .pasteis-case .pasteis-hero__media {
    height: 44%;
  }

  .pasteis-case .pasteis-hero__lockup {
    top: 22%;
  }

  .pasteis-case .pasteis-hero__object--pastry {
    top: 17%;
  }

  .pasteis-case .pasteis-hero__object--vespa {
    bottom: 31%;
  }

  .pasteis-case .pasteis-hero__lead {
    max-width: 95%;
    font-size: clamp(36px, 10.8vw, 47px);
  }

  .pasteis-case .pasteis-hero__copy {
    max-width: 100%;
  }

  .pasteis-case .scope__list {
    grid-template-columns: 1fr;
  }

  .pasteis-case .scope__list li {
    min-height: 118px;
  }

  .pasteis-case .packaging__retail,
  .pasteis-case .communications__food-two {
    width: 100% !important;
  }

  .pasteis-case .contact__channels strong,
  .pasteis-case .contact__phone strong,
  .pasteis-case .contact__office strong {
    font-size: 16px;
  }
}

@media (hover: none) {
  .pasteis-case .identity__marks article::after {
    display: none;
  }

  .pasteis-case .related__grid > a:hover img {
    filter: none;
    transform: none;
  }
}

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

  .pasteis-case *,
  .pasteis-case *::before,
  .pasteis-case *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .pasteis-case .pasteis-hero__object,
  .js .pasteis-case [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

html.is-static .pasteis-case [data-reveal],
html.is-static .pasteis-case .pasteis-hero__object {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

@media print {
  .pasteis-case .site-header,
  .pasteis-case .mobile-menu,
  .pasteis-case .case-index,
  .pasteis-case .case-contact,
  .pasteis-case .related,
  .pasteis-case .copy-feedback,
  .pasteis-case .pasteis-hero__object,
  .pasteis-case .packaging__object,
  .pasteis-case .spaces__vespa {
    display: none !important;
  }

  .pasteis-case .pasteis-hero,
  .pasteis-case .case-section {
    min-height: auto;
    padding-block: 36px;
    break-inside: avoid;
    background: #fff !important;
    color: #000 !important;
  }

  .pasteis-case .pasteis-hero__media,
  .pasteis-case .pasteis-hero__shade,
  .pasteis-case .pasteis-hero::before,
  .pasteis-case .pasteis-hero::after {
    display: none;
  }

  .pasteis-case .pasteis-hero__top,
  .pasteis-case .pasteis-hero__lockup,
  .pasteis-case .pasteis-hero__bottom {
    position: static;
    color: #000;
  }

  .pasteis-case .pasteis-hero__lockup {
    margin-block: 36px;
  }

  .pasteis-case .pasteis-hero__bottom {
    display: block;
  }

  .pasteis-case img {
    max-width: 100%;
    height: auto;
  }

  .js .pasteis-case [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
