:root {
  --sage: #adb9ab;
  --stone: #d9d7d5;
  --mist: #f0f2f4;
  --ink: #152018;
  --muted: #536153;
  --accent-gold: #eaab04;
  --green: #20d45a;
  --green-dark: #12a844;
  --line: rgba(21, 32, 24, 0.12);
  --white: #ffffff;
  --radius: 32px;
}

@font-face {
  font-family: "DK Cinnabar Brush";
  src:
    url("assets/fonts/DK Cinnabar Brush.ttf") format("truetype"),
    local("DK Cinnabar Brush"),
    local("DKCinnabarBrush"),
    local("DK Cinnabar Brush Regular");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: calc(100% - clamp(24px, 3vw, 72px));
  margin: clamp(14px, 1.5vw, 26px) auto 0;
}

.panel {
  border-radius: var(--radius);
  overflow: hidden;
}

.panel--sage {
  background: var(--sage);
}

.panel--mist {
  background: var(--mist);
}

.panel--stone {
  background: var(--stone);
}

.hero {
  min-height: auto;
  --hero-pad: clamp(22px, 2.3vw, 44px);
  padding: var(--hero-pad) var(--hero-pad) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.2vw, 38px);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-credit {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  opacity: 0.34;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
  opacity: 0.9;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(210px, 14vw, 330px);
  height: auto;
  display: block;
}

.contact-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(21, 32, 24, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.24);
}

.icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 32, 24, 0.18);
  background: rgba(255, 255, 255, 0.24);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.icon-link:hover,
.phone-link:hover {
  background: rgba(255, 255, 255, 0.44);
}

.icon-link:hover {
  transform: translateY(-2px);
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.72fr);
  align-items: end;
  gap: clamp(22px, 2vw, 38px);
}

.video-card {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1926 / 1074;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--sage);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.purchase-form {
  width: 100%;
  min-height: 0;
  margin-bottom: var(--hero-pad);
  padding: clamp(28px, 2.25vw, 44px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.2vw, 18px);
  box-shadow: 0 24px 60px rgba(36, 46, 33, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 14px;
  color: var(--accent-gold);
  font-family: "DK Cinnabar Brush", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: clamp(48px, 4.05vw, 82px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.form-copy {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.price-line {
  width: fit-content;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(32, 212, 90, 0.14);
  color: #0a5f28;
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 1;
  font-weight: 950;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

input:focus {
  border-color: rgba(21, 32, 24, 0.5);
  box-shadow: 0 0 0 4px rgba(21, 32, 24, 0.08);
}

.buy-button {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  margin-top: 8px;
  background: var(--green);
  color: #06150a;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.buy-button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(32, 212, 90, 0.28);
}

.buy-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.payment-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.payment-message.is-error {
  color: #9f2d25;
}

.payment-result-page {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
  background: var(--sage);
}

.payment-result {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 72px);
  box-shadow: 0 24px 70px rgba(21, 32, 24, 0.14);
}

.payment-result .brand {
  margin-bottom: clamp(34px, 6vw, 64px);
}

.payment-result h1 {
  max-width: 11ch;
  color: var(--accent-gold);
  font-size: clamp(54px, 9vw, 92px);
}

.payment-result-copy {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.payment-result-copy.is-error {
  color: #9f2d25;
}

.result-link {
  min-height: 52px;
  width: fit-content;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #06150a;
  font-weight: 900;
}

.marquee-section {
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding-right: 46px;
  color: var(--mist);
  font-size: 170px;
  line-height: 0.88;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0;
}

.details {
  padding: clamp(34px, 4vw, 76px);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 76px);
}

.checklist-photo {
  position: relative;
  min-height: clamp(600px, 64vh, 840px);
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, rgba(173, 185, 171, 0.58), rgba(255, 255, 255, 0.45));
  box-shadow: inset 0 0 0 1px rgba(21, 32, 24, 0.06);
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  outline: none;
}

.checklist-photo.is-dragging {
  cursor: grabbing;
}

.checklist-photo:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(21, 32, 24, 0.06),
    0 0 0 3px rgba(32, 212, 90, 0.36);
}

.checklist-image {
  width: min(66%, 382px);
  aspect-ratio: 1440 / 2048;
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(21, 32, 24, 0.18);
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    opacity 360ms ease,
    filter 360ms ease;
}

.checklist-image--back {
  z-index: 1;
  opacity: 0.62;
  transform: rotate(-8deg) translate(-56px, 20px) scale(0.93);
  animation: photoBackDrift 7s ease-in-out infinite;
}

.checklist-image--middle {
  z-index: 2;
  opacity: 0.76;
  transform: rotate(7deg) translate(50px, 12px) scale(0.96);
  animation: photoMiddleDrift 6.5s ease-in-out infinite;
}

.checklist-image--front {
  z-index: 3;
  position: relative;
  opacity: 1;
  transform: rotate(-2deg);
  animation: checklistPhotoFloat 5.8s ease-in-out infinite;
}

.checklist-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
}

.checklist-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 32, 24, 0.24);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.checklist-dot[aria-current="true"] {
  width: 24px;
  background: var(--green);
}

.details-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--accent-gold);
  font-family: "DK Cinnabar Brush", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.details-copy h2 span {
  display: block;
  white-space: nowrap;
}

.details-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.benefit-list {
  max-width: 620px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.benefit-list li {
  min-height: 58px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
}

.portfolio-section {
  margin-top: clamp(18px, 2vw, 30px);
  padding: clamp(24px, 4vw, 72px) clamp(24px, 4vw, 72px) 0;
  overflow: hidden;
}

.portfolio-title {
  position: relative;
  z-index: 3;
  margin: 0 auto clamp(4px, 1.3vw, 18px);
  color: var(--accent-gold);
  font-family: "DK Cinnabar Brush", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
}

.portfolio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
}

.portfolio-right {
  align-self: center;
  min-width: 0;
  padding-bottom: clamp(24px, 4vw, 72px);
}

.portfolio-video-card {
  position: relative;
  z-index: 0;
  align-self: end;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: clamp(-62px, -3.4vw, -28px) 0 0;
  overflow: visible;
  border-radius: 0;
  background: var(--stone);
  box-shadow: none;
}

.portfolio-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--stone);
  transform: translateY(-10%) scale(1.46);
  transform-origin: center;
}

.work-carousel {
  position: relative;
  min-width: 0;
  padding-bottom: 42px;
  touch-action: pan-y;
  user-select: none;
}

.work-carousel.is-dragging {
  cursor: grabbing;
}

.work-carousel__viewport {
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 24px 70px rgba(21, 32, 24, 0.14);
}

.work-carousel__track {
  display: flex;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.work-carousel.is-dragging .work-carousel__track {
  transition: none;
}

.work-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: var(--stone);
}

.work-slide img,
.transformation-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
}

.work-slide img {
  object-fit: cover;
  object-position: center;
}

.transformation-photo img {
  object-fit: cover;
}

.work-carousel__button {
  position: absolute;
  top: calc(50% - 21px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 242, 244, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(21, 32, 24, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.work-carousel__button:hover,
.work-carousel__button:focus-visible {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.work-carousel__button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.work-carousel__button--prev {
  left: 16px;
}

.work-carousel__button--next {
  right: 16px;
}

.work-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
}

.work-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 32, 24, 0.25);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.work-carousel__dot[aria-current="true"] {
  width: 24px;
  background: var(--green);
}

.transformation-photo {
  align-self: end;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  width: calc(100% - clamp(24px, 3vw, 72px));
  margin: 22px auto 28px;
  padding: 26px 6px;
}

.site-footer .phone-link,
.site-footer .icon-link {
  background: var(--mist);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

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

  50% {
    transform: rotate(1deg) translateY(-14px);
  }
}

@keyframes photoBackDrift {
  0%,
  100% {
    transform: rotate(-8deg) translate(-56px, 20px) scale(0.93);
  }

  50% {
    transform: rotate(-10deg) translate(-68px, 10px) scale(0.93);
  }
}

@keyframes photoMiddleDrift {
  0%,
  100% {
    transform: rotate(7deg) translate(50px, 12px) scale(0.96);
  }

  50% {
    transform: rotate(9deg) translate(62px, 4px) scale(0.96);
  }
}

@media (min-width: 1281px) and (max-width: 1700px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.65fr);
    gap: clamp(20px, 1.6vw, 28px);
  }

  .purchase-form {
    padding: clamp(22px, 1.8vw, 28px);
    gap: 10px;
  }

  h1 {
    max-width: none;
    margin-bottom: 8px;
    font-size: clamp(38px, 3vw, 47px);
  }

  .form-copy {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.38;
  }

  .price-line {
    margin-top: 8px;
    padding: 7px 12px;
    border-radius: 12px;
    font-size: 28px;
  }

  label {
    gap: 6px;
    font-size: 12px;
  }

  input {
    min-height: 44px;
    border-radius: 14px;
    font-size: 15px;
  }

  .buy-button {
    min-height: 48px;
    border-radius: 15px;
    margin-top: 4px;
    font-size: 16px;
  }
}

@media (min-width: 1701px) {
  .purchase-form {
    padding: clamp(30px, 2vw, 38px);
    gap: 15px;
  }

  h1 {
    font-size: clamp(62px, 3.65vw, 72px);
    margin-bottom: 12px;
  }

  .price-line {
    font-size: clamp(28px, 1.8vw, 34px);
  }

  input {
    min-height: 50px;
  }

  .buy-button {
    min-height: 54px;
  }
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .purchase-form {
    min-height: auto;
    justify-content: flex-start;
  }

  h1 {
    max-width: 10ch;
  }
}

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

  .hero-grid,
  .details-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
  }

  .purchase-form {
    min-height: auto;
    justify-content: flex-start;
  }

  h1 {
    max-width: 10ch;
  }

  .details {
    padding: 34px;
  }

  .portfolio-section {
    padding: 34px 34px 0;
  }

  .portfolio-right {
    padding-bottom: 0;
  }

  .portfolio-video-card {
    max-width: 760px;
    justify-self: center;
    margin-top: -18px;
  }

  .transformation-photo {
    max-width: 760px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  :root {
    --radius: 24px;
  }

  .page-shell,
  .site-footer {
    width: calc(100% - 16px);
  }

  .hero {
    --hero-pad: 10px;
    padding: 14px 10px 0;
    gap: 16px;
  }

  .details {
    padding: 18px;
  }

  .portfolio-section {
    padding: 18px 18px 34px;
  }

  .site-header,
  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .brand-logo {
    width: min(68vw, 240px);
  }

  .contact-bar {
    width: 100%;
    justify-content: center;
  }

  .video-card {
    width: calc(100% + 72px);
    margin-inline: -36px;
    border-radius: 0;
  }

  .video-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: var(--sage);
    pointer-events: none;
  }

  .purchase-form {
    min-height: auto;
    margin-top: -5px;
    padding: 26px;
    border-radius: 22px;
    position: relative;
    z-index: 2;
  }

  h1 {
    font-size: 52px;
  }

  .marquee-track span {
    font-size: 88px;
  }

  .checklist-photo {
    min-height: 410px;
    border-radius: 22px;
  }

  .checklist-image {
    width: min(74%, 300px);
    border-radius: 16px;
  }

  .checklist-dots {
    bottom: 14px;
  }

  .details-copy h2 {
    max-width: 100%;
    font-size: 40px;
  }

  .details-copy p {
    font-size: 17px;
  }

  .portfolio-grid {
    gap: 22px;
    margin-top: 16px;
  }

  .portfolio-right {
    order: 1;
  }

  .work-carousel {
    padding-bottom: 34px;
  }

  .work-slide {
    aspect-ratio: 4 / 3;
  }

  .portfolio-video-card {
    order: 2;
    aspect-ratio: 4 / 3;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .portfolio-video {
    transform: translateY(0) scale(1.39);
  }

  .work-carousel__viewport {
    border-radius: 22px;
  }

  .transformation-photo {
    border-radius: 0;
  }

  .portfolio-title {
    font-size: 42px;
  }

  .work-carousel__button {
    width: 38px;
    height: 38px;
  }

  .work-carousel__button--prev {
    left: 10px;
  }

  .work-carousel__button--next {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
