* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  font-family: "Nunito", sans-serif;
  color: #2d2926;

  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(255, 255, 255, 0.28) 0 18px,
      transparent 19px
    ),
    radial-gradient(
      circle at 82% 75%,
      rgba(255, 255, 255, 0.18) 0 24px,
      transparent 25px
    ),
    linear-gradient(
      145deg,
      #f9db6d 0%,
      #ffb26b 45%,
      #ef6f6c 100%
    );

  background-size:
    110px 110px,
    150px 150px,
    cover;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;
}

.site-wrapper {
  position: relative;
  z-index: 10;

  width: min(100%, 780px);
  margin: 0 auto;
}

.screen {
  width: 100%;

  opacity: 1;
  transform: translateY(0) scale(1);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.screen-hidden {
  display: none !important;
}

.screen-transition-out {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.step-indicator {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 15px;

  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.24);
  color: rgba(76, 38, 18, 0.84);

  font-size: 0.82rem;
  font-weight: 800;

  backdrop-filter: blur(8px);
}

.brick-card {
  position: relative;

  width: 100%;
  padding: 72px 24px 34px;

  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #ffe463 0%,
      #f8c928 72%,
      #efb800 100%
    );

  box-shadow:
    0 12px 0 #c88d00,
    0 24px 45px rgba(82, 42, 15, 0.28);

  overflow: visible;

  animation: cardEntrance 0.8s ease both;
}

.brick-card::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.38),
      transparent 38%
    );

  pointer-events: none;
}

.brick-card-studs {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  gap: 18px;
}

.brick-card-studs span {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 28%,
      #fff291 0%,
      #ffdd3d 42%,
      #dba900 100%
    );

  box-shadow:
    inset 0 4px 5px rgba(255, 255, 255, 0.55),
    inset 0 -4px 5px rgba(117, 75, 0, 0.23),
    0 4px 5px rgba(100, 60, 0, 0.25);
}

.form-content {
  position: relative;
  z-index: 2;
}

.small-heading {
  margin: 0 0 8px;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;

  font-size: 0.76rem;
  font-weight: 800;
  color: #805e00;
}

.main-title {
  margin: 0;

  text-align: center;

  font-size: clamp(2rem, 8vw, 3.1rem);
  line-height: 1.04;
  font-weight: 800;
  color: #322000;

  animation: titleEntrance 0.8s ease 0.12s both;
}

.introduction {
  max-width: 560px;
  margin: 18px auto 28px;

  text-align: center;
  line-height: 1.65;

  font-size: 1rem;
  color: #604700;

  animation: contentEntrance 0.8s ease 0.24s both;
}

form {
  animation: contentEntrance 0.8s ease 0.36s both;
}

.option-section {
  margin: 0 0 24px;
}

.option-section h2 {
  margin: 0 0 12px;

  font-size: 0.98rem;
  font-weight: 900;
  color: #432f00;
}

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

.option-card {
  min-height: 48px;
  padding: 11px 12px;

  border: 2px solid rgba(104, 70, 0, 0.24);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.68);
  color: #3d2b00;

  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;

  cursor: pointer;

  box-shadow:
    0 4px 0 rgba(130, 86, 0, 0.24);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease;
}

.option-card:hover {
  transform: translateY(-2px);

  box-shadow:
    0 6px 0 rgba(130, 86, 0, 0.24);
}

.option-card.selected {
  border-color: #cf2e35;
  background: #fff7d8;

  box-shadow:
    0 4px 0 #b02a2f,
    0 0 0 4px rgba(207, 46, 53, 0.12);
}

.color-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.color-dot {
  display: inline-block;

  width: 18px;
  height: 18px;

  border: 2px solid rgba(55, 32, 10, 0.22);
  border-radius: 50%;

  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.45);
}

.skin-light { background: #f4c7a1; }
.skin-medium-light { background: #d99b6c; }
.skin-medium { background: #b87544; }
.skin-medium-deep { background: #87502f; }
.skin-deep { background: #4f2d1d; }

.hair-black { background: #161616; }
.hair-dark-brown { background: #3b2418; }
.hair-brown { background: #7a4a26; }
.hair-blonde { background: #e0b95f; }
.hair-red { background: #a9472a; }
.hair-grey { background: #9b9b9b; }
.hair-white { background: #f5f0e6; }

.eye-dark-brown { background: #2b170f; }
.eye-brown { background: #6b3c1e; }
.eye-hazel { background: #8a6a2f; }
.eye-green { background: #477950; }
.eye-blue { background: #3a79b8; }
.eye-grey { background: #8c99a3; }

.clothes-white { background: #faf7ef; }
.clothes-blue { background: #277da1; }
.clothes-black { background: #171717; }
.clothes-pink { background: #f7a1be; }
.clothes-brown { background: #7a4a26; }

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;

  font-size: 0.92rem;
  font-weight: 800;
  color: #432f00;
}

input {
  width: 100%;
  min-height: 52px;

  padding: 13px 15px;

  border: 2px solid rgba(104, 70, 0, 0.27);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.92);

  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #2d2926;

  box-shadow:
    inset 0 2px 4px rgba(90, 54, 0, 0.08);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

input::placeholder {
  color: #9b948c;
}

input:focus {
  outline: none;

  border-color: #d83b3b;

  box-shadow:
    0 0 0 4px rgba(216, 59, 59, 0.16),
    inset 0 2px 4px rgba(90, 54, 0, 0.08);

  transform: translateY(-1px);
}

.input-error {
  border-color: #a8001c;
  background: #fff4f5;
}

button {
  font-family: "Nunito", sans-serif;
}

.brick-button {
  position: relative;

  width: 100%;
  min-height: 54px;
  margin-top: 8px;

  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #ed4b4b,
      #cf2e35
    );

  color: white;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;

  cursor: pointer;

  box-shadow:
    0 7px 0 #8f1920,
    0 12px 20px rgba(100, 24, 24, 0.28);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    opacity 0.18s ease;
}

.brick-button::before,
.brick-button::after {
  content: "";

  position: absolute;
  top: -8px;

  width: 17px;
  height: 9px;

  border-radius: 7px 7px 0 0;

  background: #f35b5b;
}

.brick-button::before {
  left: 25%;
}

.brick-button::after {
  right: 25%;
}

.brick-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 9px 0 #8f1920,
    0 15px 24px rgba(100, 24, 24, 0.3);

  filter: brightness(1.04);
}

.brick-button:active {
  transform: translateY(5px);

  box-shadow:
    0 2px 0 #8f1920,
    0 6px 12px rgba(100, 24, 24, 0.24);
}

.brick-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.secondary-button {
  display: block;

  min-height: 48px;
  margin: 16px auto 0;
  padding: 12px 22px;

  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.18);
  color: white;

  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.secondary-inline-button {
  min-height: 50px;
  padding: 12px 18px;

  border: 2px solid rgba(90, 50, 10, 0.25);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.55);
  color: #4b3424;

  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;
}

.error-message {
  min-height: 24px;
  margin: 4px 0 6px;

  text-align: center;

  font-size: 0.9rem;
  font-weight: 700;
  color: #8d0018;
}

.attempt-message,
.privacy-note {
  margin: 18px 0 0;

  text-align: center;

  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(77, 40, 18, 0.72);
}

.floating-brick {
  position: fixed;
  z-index: 1;

  display: flex;
  justify-content: center;
  gap: 8px;

  padding-top: 8px;

  border-radius: 11px;

  opacity: 0.34;
  pointer-events: none;

  box-shadow:
    0 7px 0 rgba(70, 30, 20, 0.22);

  animation: floatBrick 7s ease-in-out infinite;
}

.floating-brick span {
  width: 18px;
  height: 10px;

  border-radius: 8px 8px 0 0;

  background: rgba(255, 255, 255, 0.35);
}

.floating-brick-one {
  top: 8%;
  left: 5%;

  width: 88px;
  height: 42px;

  background: #e63946;

  transform: rotate(-8deg);
}

.floating-brick-two {
  top: 20%;
  right: 4%;

  width: 116px;
  height: 44px;

  background: #277da1;

  animation-delay: 1.6s;
}

.floating-brick-three {
  bottom: 8%;
  left: 9%;

  width: 90px;
  height: 43px;

  background: #43aa5c;

  animation-delay: 3.1s;
}

.preview-card {
  text-align: center;
}

.portrait-stage {
  position: relative;

  min-height: 410px;

  display: grid;
  place-items: center;

  margin: 24px 0;
}

.lego-loader {
  position: absolute;
  z-index: 5;

  display: flex;
  gap: 10px;
}

.lego-loader span {
  width: 42px;
  height: 34px;

  border-radius: 8px;

  box-shadow:
    0 6px 0 rgba(80, 40, 10, 0.26);

  animation: buildBounce 0.65s ease-in-out infinite;
}

.lego-loader span:nth-child(1) {
  background: #ef476f;
}

.lego-loader span:nth-child(2) {
  background: #ffd166;
  animation-delay: 0.12s;
}

.lego-loader span:nth-child(3) {
  background: #118ab2;
  animation-delay: 0.24s;
}

.camera-flash {
  position: fixed;
  inset: 0;
  z-index: 100;

  background: white;
  opacity: 0;
  pointer-events: none;
}

.camera-flash.flash-active {
  animation: cameraFlash 0.52s ease;
}

.portrait-polaroid,
.letter-portrait-polaroid {
  width: min(100%, 390px);
  padding: 14px 14px 22px;

  background: #fffaf0;
  border-radius: 8px;

  box-shadow:
    0 14px 28px rgba(74, 38, 19, 0.24);

  transform: rotate(-1.5deg);
}

.portrait-polaroid img,
.letter-portrait-polaroid img {
  display: block;

  width: 100%;
  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 5px;

  background:
    linear-gradient(
      135deg,
      #ffe463,
      #ef6f6c
    );
}

.portrait-polaroid p,
.letter-portrait-polaroid p {
  margin: 12px 0 0;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #68451f;
}

.preview-actions,
.letter-actions {
  display: grid;
  gap: 14px;

  margin-top: 20px;
}

.envelope-scene {
  min-height: 360px;

  display: grid;
  place-items: center;

  perspective: 1200px;
}

.animation-content {
  text-align: center;
}

.animation-message {
  margin: 0 0 24px;

  font-size: 1rem;
  font-weight: 800;
  color: rgba(70, 35, 20, 0.82);
}

.envelope {
  position: relative;

  width: min(82vw, 320px);
  aspect-ratio: 1.55 / 1;

  transform-style: preserve-3d;

  filter:
    drop-shadow(0 22px 20px rgba(75, 32, 20, 0.28));
}

.envelope-back {
  position: absolute;
  inset: 0;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #f1cf96,
      #ddb878
    );

  border: 1px solid rgba(116, 74, 33, 0.25);
}

.letter-preview {
  position: absolute;
  z-index: 2;

  left: 10%;
  bottom: 9%;

  width: 80%;
  height: 76%;

  padding: 22px 20px;

  border-radius: 6px;

  background:
    linear-gradient(
      180deg,
      #fffef8,
      #f8f1dd
    );

  box-shadow:
    0 5px 12px rgba(73, 47, 25, 0.15);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.48s,
    height 1s cubic-bezier(0.22, 1, 0.36, 1) 0.48s;
}

.preview-line {
  width: 100%;
  height: 5px;
  margin-bottom: 12px;

  border-radius: 6px;

  background: rgba(105, 80, 53, 0.18);
}

.preview-line-short {
  width: 48%;
}

.preview-heart {
  margin-top: 18px;

  font-size: 1.5rem;
  color: #d34048;
}

.envelope-front-left,
.envelope-front-right,
.envelope-front-bottom {
  position: absolute;
  z-index: 3;

  bottom: 0;

  pointer-events: none;
}

.envelope-front-left {
  left: 0;

  width: 52%;
  height: 100%;

  background: #e4bd7c;

  clip-path: polygon(
    0 0,
    100% 54%,
    100% 100%,
    0 100%
  );

  border-radius: 0 0 0 10px;
}

.envelope-front-right {
  right: 0;

  width: 52%;
  height: 100%;

  background: #d9ab68;

  clip-path: polygon(
    100% 0,
    0 54%,
    0 100%,
    100% 100%
  );

  border-radius: 0 0 10px 0;
}

.envelope-front-bottom {
  left: 0;

  width: 100%;
  height: 58%;

  background:
    linear-gradient(
      145deg,
      #edc98f,
      #dbae68
    );

  clip-path: polygon(
    0 100%,
    50% 14%,
    100% 100%
  );

  border-radius: 0 0 10px 10px;
}

.envelope-flap {
  position: absolute;
  z-index: 5;

  top: 0;
  left: 0;

  width: 100%;
  height: 58%;

  border-radius: 10px 10px 0 0;

  background:
    linear-gradient(
      145deg,
      #f4d6a3,
      #dfb878
    );

  clip-path: polygon(
    0 0,
    100% 0,
    50% 100%
  );

  transform-origin: top center;

  transition:
    transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.envelope-open .envelope-flap {
  transform: rotateX(180deg);
  z-index: 1;
}

.envelope-open .letter-preview {
  transform: translateY(-120px);
  height: 115%;
}

.paper-perspective {
  perspective: 1300px;
}

.letter-paper {
  position: relative;

  width: 100%;
  max-height: 76vh;
  overflow-y: auto;

  padding: 48px 24px 38px;

  border-radius: 8px;

  background:
    linear-gradient(
      rgba(255, 254, 247, 0.97),
      rgba(251, 246, 228, 0.97)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 30px,
      rgba(121, 95, 63, 0.05) 31px
    );

  box-shadow:
    0 24px 60px rgba(72, 33, 20, 0.34);

  transform:
    rotateX(-78deg)
    scaleY(0.5);

  transform-origin: top center;

  opacity: 0;

  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.letter-paper-unfolded {
  transform:
    rotateX(0deg)
    scaleY(1);

  opacity: 1;
}

.letter-portrait-polaroid {
  width: min(82%, 340px);
  margin: 0 auto 34px;

  animation: portraitDrop 0.9s ease both;
}

.paper-decoration {
  position: absolute;

  display: flex;
  gap: 8px;
}

.paper-decoration-top {
  top: 18px;
  right: 20px;
}

.paper-decoration span {
  width: 20px;
  height: 20px;

  border-radius: 50%;

  box-shadow:
    inset 0 3px 4px rgba(255, 255, 255, 0.45),
    inset 0 -3px 4px rgba(70, 30, 15, 0.12);
}

.paper-decoration span:nth-child(1) {
  background: #ef476f;
}

.paper-decoration span:nth-child(2) {
  background: #ffd166;
}

.paper-decoration span:nth-child(3) {
  background: #118ab2;
}

.letter-header {
  margin-bottom: 30px;
  padding-bottom: 20px;

  text-align: center;

  border-bottom: 1px solid rgba(100, 70, 40, 0.18);
}

.letter-label {
  margin: 0 0 5px;

  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;

  font-size: 0.72rem;
  font-weight: 800;
  color: #9a6d3c;
}

#letter-title {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 700;
  color: #4b3424;
}

.letter-content {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 4.6vw, 1.42rem);
  line-height: 1.72;
  color: #49382b;
}

.letter-content p {
  margin: 0 0 20px;
}

.letter-content .letter-greeting {
  font-size: 1.25em;
  font-weight: 700;
}

.letter-content .letter-signature {
  margin-top: 32px;
}

.letter-remainder {
  opacity: 0;
  transform: translateY(12px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.letter-remainder-visible {
  opacity: 1;
  transform: translateY(0);
}

.typewriter-cursor::after {
  content: "|";

  margin-left: 3px;

  animation: blinkCursor 0.78s step-end infinite;
}

.letter-footer {
  display: flex;
  justify-content: center;

  margin-top: 34px;
  padding-top: 22px;

  border-top: 1px solid rgba(100, 70, 40, 0.16);
}

.small-brick-icon {
  display: flex;
  justify-content: center;
  gap: 6px;

  width: 58px;
  height: 29px;

  padding-top: 5px;

  border-radius: 6px;

  background: #e6484e;

  box-shadow:
    0 5px 0 #a52127;
}

.small-brick-icon span {
  width: 13px;
  height: 7px;

  border-radius: 6px 6px 0 0;

  background: #f16b70;
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 999;

  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;

  width: 14px;
  height: 10px;

  border-radius: 3px;

  animation: confettiFall 1.8s ease-in forwards;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleEntrance {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBrick {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

@keyframes buildBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

@keyframes cameraFlash {
  0% {
    opacity: 0;
  }

  12% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
  }
}

@keyframes portraitDrop {
  from {
    opacity: 0;
    transform: translateY(-26px) rotate(-4deg) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg) scale(1);
  }
}

@keyframes confettiFall {
  from {
    transform:
      translateY(-12vh)
      rotate(0deg);
    opacity: 1;
  }

  to {
    transform:
      translateY(108vh)
      rotate(420deg);
    opacity: 0;
  }
}

@media (min-width: 700px) {
  body {
    padding: 38px;
  }

  .brick-card {
    padding: 78px 52px 46px;
  }

  .brick-card-studs {
    gap: 24px;
  }

  .brick-card-studs span {
    width: 38px;
    height: 38px;
  }

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

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

  .preview-actions,
  .letter-actions {
    grid-template-columns: 1fr 1.5fr;
  }

  .letter-paper {
    padding: 60px 64px 52px;
  }

  .paper-decoration-top {
    top: 24px;
    right: 28px;
  }
}

@media (max-width: 420px) {
  body {
    padding: 14px;
    align-items: flex-start;
  }

  .site-wrapper {
    margin-top: 18px;
  }

  .brick-card {
    padding:
      64px
      20px
      28px;
  }

  .brick-card-studs {
    gap: 13px;
  }

  .brick-card-studs span {
    width: 29px;
    height: 29px;
  }

  .letter-paper {
    max-height: 78vh;
    padding: 42px 21px 32px;
  }

  .floating-brick {
    opacity: 0.2;
  }

  .portrait-stage {
    min-height: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* PNG capture: render a full-height, animation-free copy off screen. */
.capture-wrapper {
  position: fixed;
  left: -100000px;
  top: 0;
  width: 860px;
  padding: 0;
  background: #fffdf5;
  z-index: -1;
}

.capture-paper {
  width: 860px !important;
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  box-shadow: none !important;
}

.capture-paper *,
.capture-paper *::before,
.capture-paper *::after {
  animation: none !important;
  transition: none !important;
}

.capture-paper .letter-remainder {
  opacity: 1 !important;
  transform: none !important;
}

/* More premium framing for real AI portraits. */
.portrait-polaroid,
.letter-portrait-polaroid {
  border: 1px solid rgba(93, 59, 30, 0.13);
  background: linear-gradient(180deg, #fffdf7, #f8f1e4);
  box-shadow:
    0 22px 44px rgba(68, 35, 17, 0.22),
    0 3px 8px rgba(68, 35, 17, 0.12);
}

.portrait-polaroid img,
.letter-portrait-polaroid img {
  object-position: center 42%;
  box-shadow: inset 0 0 0 1px rgba(65, 36, 19, 0.08);
}
