:root {
  --milk: #fffcef;
  --paper: #f1e7d8;
  --paper-light: #f8f2e8;
  --green: #073f31;
  --olive: #819477;
  --sage: #70866a;
  --burgundy: #660810;
  --ink-soft: #66736c;
  --line: rgba(7, 63, 49, 0.18);
  --shadow: 0 20px 50px rgba(39, 28, 17, 0.1);
  --serif: "Forum", Georgia, serif;
  --sans: "Onest", Arial, sans-serif;
  --hand: "Snell Roundhand", "Apple Chancery", cursive;
  --hero-ease: cubic-bezier(.2, .78, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--green);
  background:
    linear-gradient(rgba(7, 63, 49, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 49, 0.045) 1px, transparent 1px),
    var(--milk);
  background-size: min(15vw, 250px) min(15vw, 250px);
  font-family: var(--sans);
}

body.dialog-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

main { display: flex; flex-direction: column; }
.hero { order: 1; }
.meaning { order: 2; }
.projects { order: 3; }
.formats { order: 4; }
.pricing { order: 5; }
.price-includes { order: 6; }
.workflow { order: 7; }
.prototype-story { order: 8; }
.faq { order: 9; }
.contact { order: 10; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .tariff-price, .project h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.site-header,
.section-shell,
footer {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 88px);
  min-height: 50px;
  margin: 0;
  padding: 8px clamp(18px, 2.4vw, 34px);
  background: rgba(255, 252, 239, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(48, 38, 28, 0.09);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  transform: translateX(-50%);
}

.brand {
  color: var(--green);
  font-family: var(--hand);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 600;
  line-height: .95;
  text-decoration: none;
  white-space: nowrap;
}

nav { display: flex; gap: 36px; }
nav a {
  color: rgba(7, 63, 49, .92);
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .24s ease;
}
nav a:hover, nav a:focus-visible { color: var(--burgundy); }

.site-menu-toggle { display: none; }

html { scroll-padding-top: 96px; }
main section[id], footer[id] { scroll-margin-top: 96px; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  padding: 86px 12px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(102, 8, 16, .07), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(129, 148, 119, .14), transparent 30%),
    var(--milk);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 63, 49, .16) .55px, transparent .7px);
  background-size: 5px 5px;
  content: "";
  opacity: .13;
  pointer-events: none;
}

.section-marker,
.eyebrow,
.tariff-number,
.terms-label {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow { margin-bottom: 18px; }
h1 {
  max-width: 880px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  color: var(--green);
  font-size: clamp(54px, 6.7vw, 104px);
  line-height: .9;
  text-align: center;
  text-wrap: balance;
}
.hero-note {
  max-width: 650px;
  margin: 0 auto clamp(26px, 3vw, 38px);
  color: rgba(30, 43, 54, .82);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 clamp(20px, 2.4vw, 30px);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.button-primary { color: var(--milk); background: var(--burgundy); border-color: var(--burgundy); }
.button-secondary { color: var(--green); background: rgba(255, 252, 239, .58); }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(39, 28, 17, 0.12); }
.button:focus-visible, .brand:focus-visible, nav a:focus-visible { outline: 3px solid rgba(102, 8, 16, .3); outline-offset: 4px; }

.hero-paper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: max(620px, calc(100svh - 104px));
  background:
    linear-gradient(rgba(91, 119, 126, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 119, 126, .2) 1px, transparent 1px),
    linear-gradient(105deg, rgba(255, 255, 255, .8), rgba(247, 239, 224, .96));
  background-size: 24px 24px, 24px 24px, auto;
  clip-path: polygon(0.7% 1.2%, 8% .2%, 16% 1%, 25% .35%, 34% .9%, 43% .25%, 54% .85%, 65% .25%, 76% .9%, 87% .2%, 99.3% 1.1%, 99.7% 16%, 99.15% 31%, 99.8% 48%, 99.25% 65%, 99.7% 82%, 99.1% 98.8%, 88% 99.5%, 77% 98.9%, 66% 99.6%, 54% 99%, 43% 99.6%, 31% 99%, 20% 99.6%, 9% 98.9%, .6% 99.4%, .25% 82%, .8% 66%, .2% 49%, .7% 32%, .25% 15%);
  filter: drop-shadow(0 28px 34px rgba(47, 35, 24, .15));
  transform: scaleX(1) rotate(-.35deg);
  transform-origin: center;
  transition: transform 1.15s var(--hero-ease), opacity .35s ease;
  will-change: transform;
}

.hero-paper::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(102, 8, 16, .035), transparent 27%),
    repeating-linear-gradient(96deg, rgba(86, 60, 37, .025) 0 1px, transparent 1px 6px);
  content: "";
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}

.hero-paper-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 8vw, 100px) clamp(82px, 10vw, 150px);
}

.paper-word {
  position: absolute;
  color: var(--burgundy);
  font-family: var(--hand);
  font-size: clamp(22px, 2.3vw, 36px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.paper-word--clear { top: 15%; left: 7%; transform: rotate(-8deg); }
.paper-word--stylish { top: 11%; right: 9%; transform: rotate(7deg); }
.paper-word--thoughtful { top: 41%; left: 1.4%; transform: rotate(-6deg); }
.paper-word--easy { top: 48%; right: 5%; transform: rotate(8deg); }
.paper-word--modern { bottom: 11%; left: 8%; transform: rotate(5deg); }
.paper-word--adaptive { right: 8%; bottom: 12%; transform: rotate(-7deg); }

.js .hero:not(.is-ready) .hero-paper {
  opacity: .72;
  transform: scaleX(.075) rotate(0);
}

.js .hero:not(.is-ready) .hero-kicker,
.js .hero:not(.is-ready) h1,
.js .hero:not(.is-ready) .hero-note,
.js .hero:not(.is-ready) .hero-actions,
.js .hero:not(.is-ready) .paper-word {
  opacity: 0;
  transform: translateY(18px);
}

.hero-kicker,
.hero h1,
.hero-note,
.hero-actions,
.paper-word {
  transition: opacity .55s ease, transform .65s var(--hero-ease);
}

.hero-kicker { transition-delay: .82s; }
.hero h1 { transition-delay: .92s; }
.hero-note { transition-delay: 1.02s; }
.hero-actions { transition-delay: 1.12s; }
.paper-word { transition-delay: 1.22s; }
.paper-word--stylish, .paper-word--easy, .paper-word--adaptive { transition-delay: 1.34s; }

.meaning.section-shell {
  position: relative;
  margin-top: clamp(110px, 10vw, 180px);
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(96px, 9vw, 138px);
}

.meaning::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.meaning-intro {
  display: block;
}

.meaning-intro > .section-marker { margin-bottom: clamp(34px, 4vw, 58px); }

.meaning-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: end;
  gap: clamp(46px, 6vw, 92px);
}

.meaning h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: .94;
  text-wrap: balance;
}

.meaning-title-mobile { display: none; }
.meaning-title-nowrap { white-space: nowrap; }

.meaning-text {
  max-width: 560px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--burgundy);
}

.meaning-text p {
  margin: 0;
  color: rgba(30, 43, 54, .78);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}

.meaning-text p + p { margin-top: 18px; }

.meaning-steps {
  display: grid;
  gap: 8px;
  margin: clamp(62px, 6vw, 86px) 0 0;
  padding: 0;
  list-style: none;
}

.meaning-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .35fr) minmax(0, 1fr);
  width: 60%;
  min-height: 88px;
  align-items: center;
  padding: 16px clamp(24px, 2.4vw, 36px);
  overflow: visible;
  background:
    linear-gradient(100deg, rgba(112, 134, 106, .25), rgba(112, 134, 106, .11)),
    var(--milk);
  border: 1px solid rgba(112, 134, 106, .18);
  box-shadow: 0 10px 26px rgba(39, 28, 17, .035);
  transition: transform .35s var(--hero-ease), background .35s ease, box-shadow .35s ease;
}

.meaning-step:nth-child(2) { margin-left: 7.6%; }
.meaning-step:nth-child(3) { margin-left: 15.2%; }
.meaning-step:nth-child(4) { margin-left: 22.8%; }
.meaning-step:nth-child(5) { margin-left: 30.4%; }
.meaning-step:nth-child(6) { margin-left: 38%; }

.meaning-step::before {
  content: none;
}

.meaning-step:hover {
  background: linear-gradient(100deg, rgba(112, 134, 106, .34), rgba(112, 134, 106, .17));
  box-shadow: 0 18px 38px rgba(39, 28, 17, .08);
  transform: translateX(5px);
}

.meaning-step h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 700;
  line-height: 1.2;
}

.meaning-step p {
  max-width: 470px;
  margin: 0 64px 0 24px;
  color: rgba(30, 43, 54, .72);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
}

.meaning-number {
  position: absolute;
  right: clamp(20px, 2.3vw, 34px);
  bottom: 22px;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .58;
}

.meaning-step.reveal { transform: translateY(24px); }
.meaning-step.reveal.is-visible { transform: none; }
.meaning-step.reveal:nth-child(2) { transition-delay: .06s; }
.meaning-step.reveal:nth-child(3) { transition-delay: .12s; }
.meaning-step.reveal:nth-child(4) { transition-delay: .18s; }
.meaning-step.reveal:nth-child(5) { transition-delay: .24s; }
.meaning-step.reveal:nth-child(6) { transition-delay: .3s; }
.meaning-step.reveal.is-visible:hover { transform: translateX(5px); }

.section-shell { padding-block: clamp(82px, 9vw, 132px); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.section-heading h2,
.contact h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: .98;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}
.tariff {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 44px);
  background: rgba(255, 252, 239, .88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(39, 28, 17, .06);
}
.tariff-featured { background: var(--paper); transform: translateY(-18px); }
.tariff h3 {
  min-height: 76px;
  margin: 34px 0 8px;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.08;
}
.tariff-price { margin: 0 0 22px; font-size: 39px; }
.tariff > p:not(.tariff-number, .tariff-price) { color: var(--ink-soft); line-height: 1.5; }
.tariff ul, .tariff-dialog ul { margin: 16px 0 28px; padding: 0; list-style: none; }
.tariff li, .tariff-dialog li { position: relative; padding: 7px 0 7px 20px; line-height: 1.35; }
.tariff li::before, .tariff-dialog li::before { position: absolute; left: 0; content: "—"; color: var(--burgundy); }
.text-button {
  width: fit-content;
  margin-top: auto;
  padding: 12px 0 7px;
  color: var(--burgundy);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: 700 13px "Onest", sans-serif;
  text-transform: uppercase;
}
.price-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0 18px; }
.price-pair p { margin: 0; }
.price-pair span { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: 12px; }
.price-pair strong { font-size: 20px; }

/* Formats switcher */
.formats {
  width: min(1440px, calc(100% - 64px));
  margin-block: clamp(90px, 10vw, 150px);
  padding: clamp(54px, 6vw, 88px);
  color: var(--milk);
  background: var(--sage);
  box-shadow: 0 28px 70px rgba(39, 28, 17, .12);
}
.formats.section-shell { padding-block: clamp(54px, 6vw, 88px); }
.formats .section-heading { margin-bottom: clamp(42px, 5vw, 70px); }
.formats .section-marker,
.formats .eyebrow { color: rgba(255, 252, 239, .72); }
.formats .section-heading h2 { color: var(--milk); }
.format-switcher { border: 1px solid rgba(255, 252, 239, .48); }
.format-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7, 63, 49, .16);
}
.format-tab {
  min-height: 72px;
  padding: 16px 20px;
  color: var(--milk);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 252, 239, .48);
  cursor: pointer;
  font: 600 clamp(13px, 1.15vw, 16px)/1.2 var(--sans);
  text-align: left;
  transition: color .25s ease, background .25s ease;
}
.format-tab:last-child { border-right: 0; }
.format-tab span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .7;
}
.format-tab.is-active { color: var(--green); background: var(--milk); }
.format-tab:hover:not(.is-active) { background: rgba(255, 252, 239, .1); }
.format-tab:focus-visible { position: relative; z-index: 2; outline: 3px solid var(--burgundy); outline-offset: -4px; }
.format-panels { min-height: 410px; }
.format-panel {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  padding: clamp(36px, 5vw, 72px);
  animation: format-reveal .42s ease both;
}
.format-panel[hidden] { display: none; }
.format-kicker {
  margin: 0 0 20px;
  color: rgba(255, 252, 239, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.format-intro h3 {
  max-width: 720px;
  margin: 0 0 34px;
  font: 400 clamp(44px, 4.6vw, 70px)/.95 var(--serif);
  text-wrap: balance;
}
.format-more {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 28px;
  padding: 0 22px;
  color: var(--burgundy);
  background: var(--milk);
  border: 1px solid var(--milk);
  cursor: pointer;
  font: 700 12px var(--sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .24s ease, background .24s ease;
}
.format-more:hover { color: var(--milk); background: transparent; }
.format-more span { transition: transform .24s ease; }
.format-more:hover span { transform: translateX(5px); }
.format-more:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 3px; }
.format-benefits { margin: 0; padding: 0; list-style: none; }
.format-benefits li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 252, 239, .42);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.35;
}
.format-benefits li:last-child { border-bottom: 1px solid rgba(255, 252, 239, .42); }
.format-benefits span { color: rgba(255, 252, 239, .62); font-size: 10px; font-weight: 700; letter-spacing: .08em; }

@keyframes format-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Paper-folder art direction for formats */
.formats {
  position: relative;
  margin-block: clamp(110px, 11vw, 170px);
  color: var(--green);
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  overflow: hidden;
}
.formats::after {
  position: absolute;
  top: 0;
  right: clamp(22px, 4vw, 62px);
  width: clamp(70px, 7vw, 104px);
  height: 14px;
  background: var(--burgundy);
  content: "";
}
.formats .section-marker { color: var(--burgundy); }
.formats .eyebrow { color: var(--sage); }
.formats .section-heading h2 { max-width: 900px; color: var(--green); }
.format-switcher {
  position: relative;
  padding: 78px 18px 18px;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(112, 134, 106, .13) 32px),
    var(--milk);
  border: 1px solid rgba(7, 63, 49, .42);
  box-shadow: 18px 22px 0 rgba(112, 134, 106, .16);
}
.format-switcher::before {
  position: absolute;
  top: 20px;
  left: 22px;
  width: calc(100% - 44px);
  height: 14px;
  background-image: radial-gradient(circle, var(--sage) 3px, transparent 3.5px);
  background-position: left center;
  background-size: 28px 14px;
  content: "";
  opacity: .7;
}
.format-tabs {
  position: absolute;
  z-index: 3;
  top: 43px;
  left: 34px;
  width: calc(100% - 68px);
  gap: 10px;
  background: transparent;
}
.format-tab {
  min-height: 66px;
  color: var(--green);
  background: var(--paper);
  border: 1px solid rgba(7, 63, 49, .42);
  box-shadow: 0 8px 16px rgba(39, 28, 17, .08);
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.format-tab:last-child { border-right: 1px solid rgba(7, 63, 49, .42); }
.format-tab:nth-child(1) { transform: rotate(-.7deg); }
.format-tab:nth-child(3) { transform: rotate(.7deg); }
.format-tab.is-active {
  color: var(--milk);
  background: var(--sage);
  border-color: var(--sage);
  box-shadow: 0 13px 24px rgba(39, 28, 17, .16);
  transform: translateY(-7px) rotate(0);
}
.format-tab:hover:not(.is-active) { background: var(--milk); transform: translateY(-3px) rotate(0); }
.format-panels { min-height: 470px; }
.format-panel {
  position: relative;
  min-width: 0;
  min-height: 470px;
  padding: clamp(70px, 7vw, 104px) clamp(38px, 5vw, 76px) clamp(42px, 5vw, 72px);
  color: var(--green);
  background: rgba(255, 252, 239, .96);
  border: 1px solid rgba(7, 63, 49, .38);
  overflow: hidden;
}
.format-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background: var(--sage);
  content: "";
}
.format-panel::after {
  position: absolute;
  top: 28px;
  right: 34px;
  padding: 9px 14px;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  content: attr(data-stamp);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  opacity: .72;
  text-transform: uppercase;
  transform: rotate(7deg);
}
.format-kicker { color: var(--burgundy); }
.format-intro h3 { color: var(--green); }
.format-more {
  color: var(--milk);
  background: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 6px 7px 0 rgba(112, 134, 106, .25);
}
.format-more:hover { color: var(--burgundy); background: var(--milk); }
.format-benefits { display: grid; gap: 10px; }
.format-benefits li {
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 18px 20px;
  color: var(--green);
  background: rgba(112, 134, 106, .1);
  border: 1px solid rgba(7, 63, 49, .22);
}
.format-benefits li:last-child { border-bottom: 1px solid rgba(7, 63, 49, .22); }
.format-benefits span { color: var(--burgundy); }
.format-intro,
.format-benefits { position: relative; z-index: 3; }
.format-cat {
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: 51%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 16px rgba(39, 28, 17, .18));
  transform-origin: 50% 100%;
}
.format-cat--basic { width: clamp(105px, 10vw, 145px); animation: cat-party 2.8s ease-in-out infinite; }
.format-cat--brand { width: clamp(170px, 16vw, 230px); animation: cat-coffee 3.2s ease-in-out infinite; }
.format-cat--zero { width: clamp(175px, 17vw, 245px); animation: cat-rich 3.4s ease-in-out infinite; }

@keyframes cat-party {
  0%, 100% { transform: translateX(-50%) translateY(8px) rotate(-2deg); }
  45% { transform: translateX(-50%) translateY(0) rotate(2deg); }
  60% { transform: translateX(-50%) translateY(-3px) rotate(0); }
}
@keyframes cat-coffee {
  0%, 100% { transform: translateX(-50%) translateY(7px) rotate(1deg); }
  50% { transform: translateX(-50%) translateY(-2px) rotate(-1deg); }
}
@keyframes cat-rich {
  0%, 100% { transform: translateX(-50%) translateY(6px) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(0) rotate(1deg); }
}

/* Pricing circles */
.pricing {
  position: relative;
  width: min(100% - 64px, 1540px);
  padding-block: clamp(100px, 11vw, 170px) clamp(120px, 13vw, 190px);
  overflow: hidden;
}
.pricing::before {
  position: absolute;
  top: 5%;
  left: 48%;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(112, 134, 106, .18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}
.pricing-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 116px);
}
.pricing-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--green);
  font: 400 clamp(72px, 8.8vw, 138px)/.82 var(--serif);
  letter-spacing: -.035em;
}
.pricing-script {
  margin: 34px 0 0;
  color: var(--burgundy);
  font: 400 clamp(28px, 3.2vw, 48px)/1 "Snell Roundhand", "Apple Chancery", cursive;
  transform: rotate(-4deg);
}
.pricing-intro {
  display: grid;
  gap: 20px;
  max-width: 650px;
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
}
.pricing-intro p { margin: 0; }
.pricing-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
}
.pricing-card {
  position: relative;
  min-width: 0;
  min-height: clamp(480px, 39vw, 590px);
  padding: clamp(70px, 6vw, 96px) clamp(28px, 3vw, 48px) 40px;
  color: var(--green);
  background:
    radial-gradient(circle at 16% 22%, rgba(112, 134, 106, .08) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 66%, rgba(102, 8, 16, .05) 0 1px, transparent 1.8px),
    linear-gradient(115deg, rgba(255,255,255,.48), transparent 42%),
    #f4f0e6;
  background-size: 15px 15px, 19px 19px, auto, auto;
  border: 1px solid rgba(7, 63, 49, .16);
  border-radius: 22px;
  box-shadow: 0 22px 40px rgba(39, 28, 17, .12);
  transform: rotate(-.35deg);
}
.pricing-card--custom { margin-top: 34px; background-color: #edf0e5; transform: rotate(.35deg); }
.pricing-card--shop { transform: rotate(-.2deg); }
.pricing-card::before {
  position: absolute;
  top: -27px;
  left: 50%;
  width: 38%;
  height: 58px;
  background: rgba(203, 205, 196, .62);
  box-shadow: inset 0 0 18px rgba(255,255,255,.45);
  content: "";
  opacity: .8;
  transform: translateX(-50%) rotate(2deg);
}
.pricing-card--custom::before { transform: translateX(-50%) rotate(-2deg); }
.pricing-card::after {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  background-image: radial-gradient(circle, var(--burgundy) 2px, transparent 2.5px);
  background-size: 13px 13px;
  content: "";
  opacity: .2;
}
.pricing-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-number {
  margin: 0 0 30px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pricing-card h3 {
  max-width: 390px;
  margin: 0;
  font: 400 clamp(34px, 3.2vw, 50px)/.98 var(--serif);
  text-wrap: balance;
}
.pricing-card--custom h3 {
  max-width: 100%;
  font-size: clamp(31px, 2.65vw, 42px);
  line-height: 1;
  text-wrap: pretty;
}
.pricing-title-custom span { display: block; }
.pricing-title-custom span:last-child {
  font-size: .86em;
  white-space: nowrap;
}
.pricing-card-note {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.pricing-price {
  margin: 18px 0 0;
  color: var(--burgundy);
  font: 400 clamp(42px, 4vw, 62px)/.9 var(--serif);
  white-space: nowrap;
}
.pricing-price span { font-size: .52em; }
.pricing-time {
  margin: auto 0 0;
  padding-top: 34px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-design {
  max-width: 330px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.pricing-actions button,
.pricing-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: 750 11px var(--sans);
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.pricing-actions button {
  position: relative;
  min-width: 134px;
  color: var(--green);
  background: transparent;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  transform: rotate(-4deg);
}
.pricing-actions button::after {
  position: absolute;
  inset: -5px -8px;
  border: 1px solid rgba(102, 8, 16, .62);
  border-radius: 50%;
  content: "";
  transform: rotate(6deg);
}
.pricing-actions a { gap: 8px; padding-inline: 4px; color: var(--burgundy); border-bottom: 1px solid currentColor; }
.pricing-actions button:hover,
.pricing-actions a:hover { transform: translateY(-3px) rotate(0); }
.pricing-actions button:focus-visible,
.pricing-actions a:focus-visible { outline: 3px solid rgba(112, 134, 106, .55); outline-offset: 3px; }
.pricing-footnote {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: clamp(70px, 8vw, 110px) auto 0;
  padding: 22px 26px;
  color: var(--ink-soft);
  background: rgba(255, 252, 239, .78);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.pricing-footnote span { display: block; margin-bottom: 5px; color: var(--burgundy); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tariff-dialog.price-dialog {
  width: min(820px, calc(100% - 20px));
  max-height: calc(100svh - 20px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.price-dialog .dialog-close {
  z-index: 8;
  top: 34px;
  right: 34px;
  color: var(--green);
  background: var(--milk);
  border-color: rgba(7, 63, 49, .3);
  border-radius: 50%;
}
.price-dialog-circle {
  position: relative;
  display: grid;
  width: min(880px, calc(100vw - 24px), calc(100svh - 24px));
  aspect-ratio: 1;
  place-items: center;
  margin: auto;
  color: var(--green);
  background: #dfe6d7;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 36px 90px rgba(7, 31, 25, .3);
  overflow: hidden;
}
#price-dialog-custom .price-dialog-circle { color: var(--milk); background: var(--burgundy); border-color: var(--milk); }
#price-dialog-shop .price-dialog-circle { background: var(--milk); border-color: var(--burgundy); }
.price-dialog-circle::before {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .22;
}
.price-dialog-circle::after {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px dashed currentColor;
  border-radius: 50%;
  content: "";
  opacity: .12;
}
.price-dialog-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: pricing-orbit-spin 46s linear infinite;
  pointer-events: none;
}
#price-dialog-custom .price-dialog-orbit { animation-direction: reverse; }
.price-dialog-orbit path { fill: none; }
.price-dialog-orbit text { fill: currentColor; font: 700 13px var(--sans); letter-spacing: .16em; }
.price-dialog-content {
  position: relative;
  z-index: 3;
  width: 70%;
  max-height: 74%;
  padding: 24px 30px 28px;
  overflow-y: auto;
  color: var(--green);
  background: rgba(255, 252, 239, .34);
  border: 1px solid currentColor;
  border-radius: 28px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}
.price-dialog .price-dialog-content h2 { margin: 0 auto 10px; color: var(--green); font-size: clamp(34px, 4.2vw, 52px); line-height: .94; text-align: center; text-wrap: balance; }
.price-dialog .price-dialog-content .dialog-lead { color: var(--green); text-align: center; }
.price-dialog .price-dialog-content > p:not(.section-marker, .dialog-lead, .dialog-note) { text-align: center; }
.price-dialog .price-dialog-content ul { margin-block: 14px; }
.price-dialog .price-dialog-content li { padding-block: 5px; font-size: 13px; line-height: 1.34; text-wrap: pretty; }
.price-dialog .dialog-link { margin: 14px auto 0; }
.price-dialog .dialog-note { padding: 12px 14px; font-size: 12px; line-height: 1.35; text-wrap: pretty; }
#price-dialog-custom .price-dialog-content h2,
#price-dialog-custom .price-dialog-content .dialog-lead,
#price-dialog-custom .price-dialog-content p,
#price-dialog-custom .price-dialog-content li { color: var(--milk); }
#price-dialog-custom .price-dialog-content .section-marker,
#price-dialog-custom .price-dialog-content .dialog-note strong { color: #e8d7c9; }
#price-dialog-custom .price-dialog-content { background: rgba(255, 252, 239, .07); }
#price-dialog-custom .price-dialog-content .dialog-note { background: rgba(255, 252, 239, .1); border-left-color: var(--milk); }
#price-dialog-custom .price-dialog-content li::before { color: var(--milk); }
#price-dialog-custom .dialog-link { color: var(--burgundy); background: var(--milk); border-color: var(--milk); }
#price-dialog-shop .price-dialog-content { background: rgba(112, 134, 106, .06); }
#price-dialog-shop .price-dialog-content h2 { font-size: clamp(34px, 3.8vw, 46px); }
#price-dialog-shop .price-dialog-content .dialog-lead { font-size: 13px; line-height: 1.32; }
#price-dialog-shop .price-dialog-content ul { margin-block: 10px; }
#price-dialog-shop .price-dialog-content li { padding-block: 3px; font-size: 12px; line-height: 1.28; }
#price-dialog-shop .dialog-note { padding: 10px 12px; font-size: 11px; line-height: 1.3; }
#price-dialog-shop .dialog-link { margin-top: 10px; }
.price-dialog-object-slot { position: absolute; z-index: 4; right: 3%; bottom: 8%; width: 25%; aspect-ratio: 1; opacity: 0; pointer-events: none; }

@keyframes pricing-orbit-spin { to { transform: rotate(360deg); } }

.workflow {
  position: relative;
  width: min(100% - 64px, 1540px);
  padding-block: clamp(110px, 11vw, 170px);
  border-top: 1px solid var(--line);
  overflow: clip;
}
.workflow-layout {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(64px, 7vw, 112px);
  align-items: start;
}
.workflow-intro { position: relative; min-height: 720px; }
.workflow-intro .section-marker { margin-bottom: clamp(46px, 5vw, 72px); }
.workflow-intro h2 {
  margin: 0;
  color: var(--green);
  font: 400 clamp(68px, 7.4vw, 118px)/.86 var(--serif);
  letter-spacing: -.04em;
}
.workflow-script {
  position: relative;
  z-index: 3;
  max-width: 360px;
  width: fit-content;
  margin: 42px 0 0 clamp(245px, 18vw, 310px);
  color: var(--burgundy);
  font: 400 clamp(24px, 2.4vw, 38px)/1 var(--hand);
  transform: rotate(-4deg);
}
.workflow-photo-wrap {
  position: absolute;
  left: 0;
  bottom: -58px;
  width: clamp(170px, 17vw, 250px);
  margin: 0;
}
.workflow-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -10px 12px 18px -10px;
  z-index: -1;
  background: rgba(112, 134, 106, .18);
  transform: rotate(-3deg);
}
.workflow-photo-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 18px;
  filter: grayscale(1) contrast(1.03);
}
.workflow-photo-wrap figcaption {
  position: relative;
  width: 118%;
  margin: -12px 0 0 30%;
  padding: 10px 14px;
  color: var(--milk);
  background: var(--burgundy);
  font-size: 11px;
  line-height: 1.35;
  transform: rotate(2deg);
}
.process-list {
  width: min(100%, 860px);
  margin: 0;
  padding: 0;
  justify-self: end;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  padding: clamp(20px, 2.2vw, 30px) 0;
  border-top: 1px solid var(--line);
  transition: padding-left .35s ease, border-color .35s ease;
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li:hover { padding-left: 14px; border-color: rgba(102, 8, 16, .5); }
.process-list li > span { padding-top: 5px; color: var(--burgundy); font-size: 15px; font-weight: 700; }
.process-list h3 { margin-bottom: 8px; font: 400 clamp(26px, 2vw, 34px)/1 var(--serif); }
.process-list p { max-width: 700px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.45; text-wrap: pretty; }
.workflow-brief-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 15px;
  color: var(--burgundy);
  font: 700 11px/1 var(--sans);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .25s ease, color .25s ease;
}
.workflow-brief-link:hover,
.workflow-brief-link:focus-visible { gap: 13px; color: var(--green); }
.workflow-brief-link:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 6px; }
.terms {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
}
.terms > div { padding: 30px 34px; background: var(--paper-light); }
.terms p { margin-bottom: 9px; line-height: 1.45; }
.terms p:last-child { margin-bottom: 0; }

.prototype-story {
  position: relative;
  width: min(100% - 64px, 1540px);
  padding-block: clamp(90px, 8vw, 132px);
  border-top: 1px solid var(--line);
}
.prototype-heading {
  display: grid;
  grid-template-columns: minmax(190px, .36fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(48px, 5vw, 76px);
}
.prototype-heading .eyebrow { color: var(--sage); }
.prototype-heading h2 {
  max-width: 1040px;
  margin: 0;
  font: 400 clamp(62px, 7vw, 112px)/.9 var(--serif);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.prototype-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.prototype-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4vw, 56px) 0;
}
.prototype-copy > p:not(.prototype-conclusion) {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}
.prototype-conclusion {
  position: relative;
  max-width: 610px;
  margin: 54px 0 0;
  padding: 25px 28px 25px 62px;
  color: var(--milk);
  background: var(--burgundy);
  font: 400 clamp(24px, 2.4vw, 38px)/1.12 var(--serif);
  transform: rotate(-1.2deg);
  box-shadow: 14px 16px 0 rgba(112, 134, 106, .18);
}
.prototype-conclusion > span {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--sans);
  font-size: 18px;
}
.prototype-visual {
  position: relative;
  width: min(100%, 820px);
  margin: 0;
  padding: clamp(12px, 1.5vw, 22px);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(.7deg);
  justify-self: end;
}
.prototype-visual::before,
.prototype-visual::after {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 28px;
  background: rgba(244, 236, 217, .76);
  box-shadow: 0 2px 8px rgba(39, 28, 17, .08);
  content: "";
}
.prototype-visual::before { top: -12px; left: 12%; transform: rotate(-5deg); }
.prototype-visual::after { right: 11%; bottom: -11px; transform: rotate(4deg); }
.prototype-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .7s var(--hero-ease);
}
.prototype-visual:hover img { transform: scale(1.015); }
.prototype-visual figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  bottom: clamp(18px, 3vw, 44px);
  max-width: 310px;
  padding: 12px 16px;
  color: var(--green);
  background: rgba(255, 252, 239, .9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.faq {
  position: relative;
  width: min(100% - 64px, 1540px);
  padding-block: clamp(100px, 10vw, 160px);
  border-top: 1px solid var(--line);
}
.faq-heading {
  display: grid;
  grid-template-columns: minmax(150px, .28fr) minmax(0, 1.15fr) minmax(240px, .42fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 104px);
}
.faq-heading h2 {
  margin: 0;
  color: var(--green);
  font: 400 clamp(54px, 6.8vw, 104px)/.84 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.faq-heading h2 span { color: var(--burgundy); }
.faq-heading h2 em {
  position: relative;
  display: inline-block;
  color: var(--green);
  font-family: var(--hand);
  font-size: .75em;
  font-weight: 400;
  letter-spacing: -.02em;
  transform: rotate(-3deg);
}
.faq-heading h2 em::after {
  position: absolute;
  right: -8%;
  bottom: -.12em;
  left: -5%;
  height: 2px;
  background: var(--burgundy);
  content: "";
  transform: rotate(-2deg);
}
.faq-heading > p:last-child {
  max-width: 320px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 48px;
  gap: clamp(20px, 3vw, 52px);
  align-items: center;
  min-height: 104px;
  padding: 24px 4px;
  color: var(--green);
  cursor: pointer;
  font: 400 clamp(25px, 2.5vw, 38px)/1.05 var(--serif);
  list-style: none;
  transition: color .25s ease, padding-left .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { padding-left: 12px; color: var(--burgundy); }
.faq-item summary:focus-visible { outline: 3px solid rgba(112, 134, 106, .55); outline-offset: 5px; }
.faq-number {
  align-self: start;
  padding-top: 2px;
  color: var(--burgundy);
  font-family: var(--hand);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
}
.faq-item summary i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  justify-self: end;
  transition: transform .35s var(--hero-ease);
}
.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: var(--burgundy);
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-columns: 110px minmax(0, 1040px) 48px;
  gap: clamp(20px, 3vw, 52px);
  padding: 0 4px 42px;
}
.faq-answer p {
  grid-column: 2;
  max-width: 1040px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.58;
  text-wrap: pretty;
}

.price-includes {
  position: relative;
  width: min(100% - 64px, 1540px);
  padding-block: clamp(110px, 11vw, 170px);
}
.price-includes-heading {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 92px);
}
.price-includes-title-wrap { position: relative; width: fit-content; max-width: 100%; }
.price-includes-heading h2 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0;
  font: 400 clamp(66px, 8vw, 126px)/.84 var(--serif);
  letter-spacing: -.035em;
}
.price-includes-script {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 26px 0 0 auto;
  color: var(--milk);
  font: 400 clamp(24px, 2.7vw, 42px)/1 var(--hand);
  transform: rotate(-3deg);
}
.price-includes-brush {
  position: absolute;
  z-index: 1;
  right: -62px;
  bottom: -31px;
  width: clamp(350px, 39vw, 590px);
  height: 108px;
  object-fit: fill;
  pointer-events: none;
  transform: rotate(-2deg);
}
.price-includes-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, .64fr);
  gap: clamp(46px, 6vw, 92px);
  padding: clamp(42px, 5vw, 76px);
  background:
    radial-gradient(circle at 17% 21%, rgba(102, 8, 16, .045) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(255,255,255,.4), transparent 44%),
    #ece4d2;
  background-size: 17px 17px, auto, auto;
  border: 1px solid rgba(7, 63, 49, .14);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(39, 28, 17, .1);
}
.price-includes-kicker {
  margin: 0 0 30px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.price-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-includes-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
  border-top: 1px solid rgba(7, 63, 49, .2);
}
.price-includes-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--burgundy);
  background: rgba(255, 252, 239, .66);
  border: 1px solid rgba(102, 8, 16, .34);
  border-radius: 50%;
  font: 400 23px/1 var(--serif);
}
.price-includes-item > .price-includes-icon-text { font: 800 10px/1 var(--sans); letter-spacing: .03em; }
.price-includes-item p { margin: 0; font-size: 14px; line-height: 1.4; text-wrap: pretty; }
.price-extras {
  position: relative;
  margin-top: clamp(38px, 5vw, 64px);
  padding: clamp(26px, 3vw, 42px) clamp(90px, 10vw, 150px) clamp(26px, 3vw, 42px) clamp(24px, 3vw, 40px);
  overflow: hidden;
  background: rgba(255, 252, 239, .74);
  border: 1px solid var(--burgundy);
  border-radius: 18px;
}
.price-extras::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(102, 8, 16, .28);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}
.price-extras-copy { position: relative; z-index: 2; }
.price-extras-label {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.price-extras h3 { max-width: 680px; margin: 0 0 20px; font: 400 clamp(30px, 3vw, 44px)/.98 var(--serif); }
.price-extras p:not(.price-extras-label) { max-width: 720px; margin: 0 0 12px; color: var(--ink-soft); font-size: 13px; line-height: 1.48; text-wrap: pretty; }
.price-extras p:last-child { margin-bottom: 0; }
.price-extras-brick {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: -34px;
  width: clamp(96px, 12vw, 160px);
  max-height: 88%;
  object-fit: contain;
  opacity: .82;
  transform: rotate(8deg);
}
.price-includes-visual {
  position: relative;
  width: min(100%, 430px);
  margin: 24px auto 0;
  align-self: start;
}
.price-includes-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 18px 18px rgba(39, 28, 17, .18));
  transform: rotate(2.4deg);
  transition: transform .45s var(--hero-ease);
}
.price-includes-visual:hover .price-includes-photo { transform: rotate(.7deg) translateY(-6px); }
.price-includes-paperclip {
  position: absolute;
  z-index: 4;
  top: -26px;
  right: 6%;
  width: 24%;
  transform: rotate(13deg);
  filter: drop-shadow(0 5px 5px rgba(0,0,0,.2));
}
.price-includes-visual figcaption {
  position: relative;
  z-index: 3;
  max-width: 330px;
  margin: -34px auto 0;
  padding: 14px 18px;
  color: var(--milk);
  background: var(--sage);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-2deg);
}
.price-includes-smiles {
  position: absolute;
  z-index: 3;
  right: -7%;
  bottom: -62px;
  padding: 8px 18px;
  color: var(--burgundy);
  background: var(--milk);
  border: 1px solid rgba(102, 8, 16, .22);
  font-size: 22px;
  letter-spacing: .05em;
  transform: rotate(5deg);
}

.projects {
  --projects-distance: 0px;
  position: relative;
  min-height: 100svh;
  height: calc(100svh + var(--projects-distance));
  background: rgba(248, 242, 232, .94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.projects-sticky {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(82px, 8vh, 112px) 0 clamp(34px, 5vh, 64px);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  padding-block: 0;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.projects-heading .section-marker { margin-bottom: 20px; }
.projects-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 5.5vw, 84px);
  line-height: .9;
}
.projects-heading h2 span { display: block; }
.projects-lead {
  max-width: 560px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.projects-viewport { width: 100%; overflow: hidden; }
.projects-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 1.7vw, 28px);
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
  transform: translate3d(var(--projects-x, 0px), 0, 0);
  will-change: transform;
}

.project {
  position: relative;
  display: flex;
  width: clamp(460px, 43vw, 650px);
  height: min(600px, 61vh);
  min-height: 520px;
  flex: 0 0 auto;
  flex-direction: column;
  overflow: hidden;
  background: var(--milk);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(39, 28, 17, .08);
}

.project-cover {
  position: relative;
  height: 44%;
  min-height: 218px;
  overflow: hidden;
  background: var(--paper);
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--hero-ease);
}
.project-cover--top img { object-position: center top; }
.project:hover .project-cover img { transform: scale(1.025); }
.project-index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--milk);
  background: var(--burgundy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.project-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.3vw, 32px);
}
.project .project-type {
  display: block;
  margin: 0 0 9px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.15vw, 50px);
  line-height: .95;
}
.project-task {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.45;
}
.project-task strong {
  display: inline-block;
  margin-right: 5px;
  color: var(--green);
  font-weight: 700;
}
.project-work {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}
.project-work li {
  padding: 7px 10px;
  color: var(--green);
  background: rgba(112, 134, 106, .13);
  border: 1px solid rgba(112, 134, 106, .28);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.15;
}
.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 11px 16px;
  color: var(--milk);
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 0;
  cursor: pointer;
  font: 700 12px/1 var(--sans);
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.project-link:hover { color: var(--burgundy); background: transparent; }
.project-link:focus-visible { outline: 3px solid rgba(102, 8, 16, .3); outline-offset: 3px; }

.project-more {
  justify-content: space-between;
  padding: clamp(30px, 4vw, 58px);
  color: var(--milk);
  background: var(--sage);
  border-color: transparent;
}
.project-more-number {
  align-self: flex-end;
  font-family: var(--serif);
  font-size: clamp(130px, 15vw, 230px);
  font-weight: 400;
  line-height: .55;
  opacity: .22;
}
.project-more .project-type { color: rgba(255, 252, 239, .72); }
.project-more h3 { max-width: 440px; font-size: clamp(52px, 5vw, 76px); }
.project-more p:not(.project-type) { max-width: 430px; margin: 18px 0 30px; font-size: 17px; line-height: 1.5; }
.project-link--light { color: var(--green); background: var(--milk); border-color: var(--milk); }
.project-link--light:hover { color: var(--milk); background: transparent; }

.contact {
  position: relative;
  padding: clamp(72px, 7vw, 112px) clamp(24px, 5vw, 78px) 28px;
  background: var(--paper-light);
  border-top: 1px solid rgba(7, 63, 49, .2);
  overflow: hidden;
}
.contact-topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 28px;
  width: min(100%, 1440px);
  margin-inline: auto;
}
.contact-script {
  margin: -12px 0 0;
  color: var(--burgundy);
  font: 400 clamp(28px, 3vw, 48px)/1.05 "Snell Roundhand", "Apple Chancery", cursive;
  white-space: nowrap;
}
.contact-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--milk);
  background: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}
.contact-cta:hover { background: var(--burgundy); transform: translateY(-2px); }
.contact-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(210px, .42fr) minmax(500px, 1.22fr);
  align-items: end;
  gap: clamp(20px, 2.1vw, 34px);
  width: min(100%, 1440px);
  min-height: clamp(540px, 48vw, 670px);
  padding-top: clamp(54px, 5vw, 82px);
  margin-inline: auto;
}
.contact-side-label {
  position: absolute;
  top: 52%;
  left: -52px;
  margin: 0;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: 0 0;
}
.contact-intro { align-self: start; }
.contact-kicker {
  max-width: 32ch;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.contact-description { max-width: 38ch; margin: 28px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.contact h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(58px, 5.8vw, 92px);
  line-height: .9;
}
.contact-waiter {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(86%, 240px);
  transform-origin: 50% 100%;
  animation: contact-wait 4.8s ease-in-out infinite;
}
.contact-waiter img { display: block; width: 88%; height: auto; margin-inline: auto; filter: drop-shadow(0 24px 25px rgba(7, 31, 25, .16)); }
.contact-waiter p {
  position: absolute;
  z-index: 2;
  top: -72px;
  left: 50%;
  width: min(220px, 100%);
  margin: 0;
  padding: 15px 18px;
  color: var(--milk);
  background: var(--burgundy);
  border-radius: 18px 18px 18px 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transform: translateX(-50%) rotate(2deg);
}
@keyframes contact-wait {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50% { transform: translateY(-10px) rotate(.6deg); }
}
.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
  border-top: 1px solid rgba(102, 8, 16, .42);
  border-left: 1px solid rgba(102, 8, 16, .2);
}
.contact-socials > a {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 20px 52px 18px 22px;
  color: var(--green);
  border-right: 1px solid rgba(102, 8, 16, .2);
  border-bottom: 1px solid rgba(102, 8, 16, .42);
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}
.contact-socials > a:hover,
.contact-socials > a:focus-visible { color: var(--milk); background: var(--burgundy); }
.contact-socials a > span { color: currentColor; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.contact-socials strong { align-self: end; font: 400 clamp(27px, 2.25vw, 39px)/1 "Forum", serif; }
.contact-socials small { margin-top: 7px; color: currentColor; font-size: 12px; opacity: .72; }
.contact-socials i { position: absolute; top: 18px; right: 20px; font: normal 24px/1 "Onest", sans-serif; }
.contact-social--max {
  grid-column: 1 / -1;
  min-height: 142px;
  padding-right: min(46%, 260px) !important;
  overflow: hidden;
}
.contact-max-pen {
  position: absolute;
  right: 26px;
  bottom: 4px;
  width: min(42%, 230px);
  height: 128px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(-7deg);
  transition: transform .3s ease;
}
.contact-social--max:hover .contact-max-pen,
.contact-social--max:focus-visible .contact-max-pen { transform: rotate(-3deg) translateY(-3px); }
.contact-note { max-width: 760px; margin: 24px 0 0 auto; color: var(--ink-soft); font-size: 10px; line-height: 1.5; text-align: right; }

.telegram-notice {
  width: min(720px, calc(100% - 32px));
  padding: clamp(34px, 5vw, 62px);
  color: var(--green);
  background: var(--milk);
  border: 1px solid var(--burgundy);
  box-shadow: 0 32px 90px rgba(7, 31, 25, .32);
}
.telegram-notice::backdrop { background: rgba(7, 31, 25, .78); backdrop-filter: blur(8px); }
.telegram-notice h2 { max-width: 600px; margin: 22px 0 20px; font-size: clamp(42px, 6vw, 68px); line-height: .98; }
.telegram-notice > p:not(.section-marker) { max-width: 58ch; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.telegram-notice__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 30px; }
.telegram-notice__actions > a:not(.button) { color: var(--green); font-size: 13px; font-weight: 800; text-decoration: none; }
.telegram-notice__actions > a:not(.button):hover { color: var(--burgundy); }

footer {
  display: grid;
  grid-template-columns: .5fr 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 34px 0 44px;
  color: var(--ink-soft);
  font-size: 12px;
}
footer p { margin: 0; }
footer > div { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-end; }

.tariff-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  padding: 52px;
  color: var(--green);
  background: var(--milk);
  border: 1px solid var(--green);
  box-shadow: 0 40px 90px rgba(0,0,0,.25);
  overflow-y: auto;
}
.tariff-dialog::backdrop { background: rgba(7, 31, 25, .72); backdrop-filter: blur(5px); }
.tariff-dialog h2 { margin: 24px 0 18px; font: 400 46px/1 "Forum", serif; }
.tariff-dialog p:not(.section-marker) { max-width: 74ch; color: var(--ink-soft); font-size: 16px; line-height: 1.62; }
.tariff-dialog .dialog-lead { color: var(--green); font-size: 18px; }
.tariff-dialog .dialog-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: var(--green);
  background: rgba(112, 134, 106, .12);
  border-left: 3px solid var(--burgundy);
}
.tariff-dialog .dialog-note strong { display: block; margin-bottom: 4px; color: var(--burgundy); text-transform: uppercase; }
.dialog-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 6px;
  padding: 13px 18px;
  color: var(--milk);
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.dialog-link:hover { color: var(--burgundy); background: transparent; }
.dialog-link:focus-visible { outline: 3px solid rgba(102, 8, 16, .3); outline-offset: 3px; }
.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--green);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 25px;
}

.gallery-dialog {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  height: min(860px, calc(100svh - 40px));
  max-height: none;
  padding: clamp(24px, 3vw, 44px);
  color: var(--green);
  background: var(--milk);
  border: 1px solid var(--green);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .28);
  overflow: hidden;
}
.gallery-dialog::backdrop { background: rgba(7, 31, 25, .8); backdrop-filter: blur(6px); }
.gallery-heading { padding-right: 54px; }
.gallery-heading .section-marker { margin-bottom: 8px; }
.gallery-heading h2 { margin: 0 0 18px; font: 400 clamp(36px, 4vw, 58px)/.95 var(--serif); }
.gallery-stage {
  position: relative;
  height: calc(100% - 158px);
  min-height: 280px;
  overflow: auto;
  background: var(--paper-light);
  border: 1px solid var(--line);
  overscroll-behavior: contain;
}
.gallery-slide { display: none; min-height: 100%; margin: 0; }
.gallery-slide.is-active { display: flex; align-items: flex-start; justify-content: center; }
.gallery-slide img { width: 100%; height: auto; min-height: 100%; object-fit: contain; object-position: top center; }
.gallery-controls {
  display: grid;
  grid-template-columns: 44px auto 44px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.gallery-controls button,
.gallery-thumbs button {
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-controls button { width: 44px; height: 40px; font-size: 20px; }
.gallery-controls button:disabled { cursor: default; opacity: .28; }
.gallery-controls span { min-width: 58px; font-size: 12px; font-weight: 700; text-align: center; }
.gallery-thumbs {
  position: absolute;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 44px);
  display: flex;
  gap: 8px;
}
.gallery-thumbs button { width: 56px; height: 40px; opacity: .56; overflow: hidden; }
.gallery-thumbs button.is-active { border-color: var(--burgundy); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-controls button:focus-visible,
.gallery-thumbs button:focus-visible { outline: 3px solid rgba(102, 8, 16, .3); outline-offset: 2px; }

.portfolio-dialog .gallery-stage {
  background:
    linear-gradient(rgba(112, 134, 106, .1) 1px, transparent 1px),
    var(--paper-light);
  background-size: 100% 30px;
}
.portfolio-dialog .gallery-slide { height: 100%; }
.portfolio-dialog .gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.portfolio-dialog .gallery-finale.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr);
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(34px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(112, 134, 106, .2), transparent 34%),
    var(--milk);
}
.portfolio-dialog .gallery-finale > div { max-width: 650px; }
.portfolio-dialog .gallery-finale p {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portfolio-dialog .gallery-finale h3 {
  margin: 0 0 22px;
  font: 400 clamp(48px, 6vw, 88px)/.9 var(--serif);
}
.portfolio-dialog .gallery-finale span {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.45;
}
.portfolio-dialog .gallery-finale img {
  align-self: end;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(39, 28, 17, .18));
  animation: finale-wave 2.8s ease-in-out infinite;
}
.portfolio-dialog .gallery-thumbs button:last-child img {
  object-fit: contain;
  background: var(--paper-light);
}

@keyframes finale-wave {
  0%, 100% { transform: translateY(7px) rotate(-2deg); }
  50% { transform: translateY(0) rotate(2deg); }
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .section-shell, footer { width: min(100% - 32px, 900px); }
  .site-header { width: calc(100% - 48px); }
  .hero { min-height: 780px; padding-inline: 24px; }
  .hero-paper-content { padding-inline: clamp(62px, 10vw, 110px); }
  .paper-word { font-size: clamp(21px, 3vw, 31px); }
  .paper-word--thoughtful { top: 36%; left: .7%; }
  .meaning-copy { grid-template-columns: 1fr; }
  .meaning-text { max-width: 720px; margin-top: 38px; }
  .meaning-step { grid-template-columns: minmax(112px, .34fr) minmax(0, 1fr); width: 68%; }
  .meaning-step:nth-child(2) { margin-left: 6.2%; }
  .meaning-step:nth-child(3) { margin-left: 12.4%; }
  .meaning-step:nth-child(4) { margin-left: 18.6%; }
  .meaning-step:nth-child(5) { margin-left: 24.8%; }
  .meaning-step:nth-child(6) { margin-left: 31%; }
  .tariff-grid { grid-template-columns: 1fr 1fr; }
  .tariff:last-child { grid-column: 1 / -1; min-height: auto; }
  .format-panel { grid-template-columns: 1fr; gap: 42px; align-items: start; }
  .pricing-heading { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .pricing-intro { max-width: 720px; }
  .pricing-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px 24px; }
  .pricing-card { min-height: 520px; }
  .pricing-card--custom { margin-top: 0; }
  .pricing-card--shop { grid-column: 1 / -1; width: min(100%, 438px); justify-self: center; }
  .pricing-footnote { margin-top: 80px; }
  .workflow-layout { grid-template-columns: 1fr; }
  .process-list { width: 100%; justify-self: stretch; }
  .workflow-intro { min-height: 690px; }
  .workflow-intro h2 { max-width: 760px; }
  .workflow-photo-wrap { left: auto; right: 8%; }
  .prototype-heading { grid-template-columns: 1fr; gap: 26px; }
  .prototype-layout { grid-template-columns: 1fr; }
  .prototype-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; padding-block: 0; }
  .prototype-conclusion { grid-column: 1 / -1; }
  .prototype-visual { width: min(88%, 720px); justify-self: center; }
  .faq-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .faq-heading > p:last-child { max-width: 560px; }
  .price-includes-heading { grid-template-columns: 1fr; gap: 26px; }
  .price-includes-card { grid-template-columns: 1fr; }
  .price-includes-visual { width: min(78%, 470px); margin-top: 28px; }
  .contact { grid-template-columns: 1fr; padding-inline: 42px; }
}

@media (max-width: 900px) {
  .projects { height: auto !important; min-height: 0; }
  .projects-sticky { position: static; min-height: 0; padding: 92px 0; overflow: visible; }
  .projects-heading { grid-template-columns: 1fr; gap: 28px; align-items: start; margin-bottom: 48px; }
  .projects-heading h2 { font-size: clamp(48px, 9vw, 70px); }
  .projects-lead { max-width: 680px; }
  .projects-viewport { overflow: visible; }
  .projects-track {
    display: grid;
    width: min(100% - 32px, 900px);
    gap: 18px;
    padding: 0;
    margin-inline: auto;
    transform: none !important;
  }
  .project { width: 100%; height: auto; min-height: 0; }
  .project-cover { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .project-content { min-height: 350px; }
  .project-more { min-height: 500px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 82px; }
  main section[id], footer[id] { scroll-margin-top: 82px; }
  body { background-size: 90px 90px; }
  .site-header { top: 12px; width: calc(100% - 24px); min-height: 54px; padding: 7px 12px; border-radius: 16px; overflow: visible; }
  .brand { font-size: clamp(17px, 5vw, 21px); }
  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--green);
    background: transparent;
    border: 1px solid rgba(7, 63, 49, .28);
    border-radius: 999px;
    font: 700 11px/1 var(--sans);
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 92px);
    padding: 8px;
    overflow-y: auto;
    background: rgba(255, 252, 239, .98);
    border: 1px solid rgba(7, 63, 49, .14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(48, 38, 28, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-header nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-header nav a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(7, 63, 49, .1);
    font-size: 12px;
  }
  .site-header nav a:last-child { border-bottom: 0; }
  .hero { min-height: 0; padding: 92px 12px 32px; }
  .hero-paper { min-height: max(610px, calc(100svh - 124px)); background-size: 20px 20px, 20px 20px, auto; }
  .hero-paper-content { min-height: inherit; padding: 86px 24px 82px; }
  h1 { font-size: clamp(43px, 13.5vw, 62px); line-height: .92; }
  .hero-note { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: min(270px, 100%); min-height: 50px; padding-inline: 18px; }
  .paper-word { font-size: clamp(17px, 5.1vw, 20px); }
  .paper-word--clear { top: 4%; left: 6%; }
  .paper-word--stylish { top: 4%; right: 6%; left: auto; }
  .paper-word--thoughtful { top: 7%; right: auto; left: 50%; transform: translateX(-50%) rotate(-2deg); }
  .paper-word--modern { bottom: 3%; left: 5%; }
  .paper-word--adaptive { right: 5%; bottom: 3%; left: auto; }
  .paper-word--easy { right: auto; bottom: 9%; left: 50%; top: auto; transform: translateX(-50%) rotate(3deg); }
  .meaning.section-shell { margin-top: 82px; padding-top: 58px; padding-bottom: 88px; }
  .meaning-intro > .section-marker { margin-bottom: 30px; }
  .meaning h2 { font-size: clamp(33px, 10.5vw, 42px); }
  .meaning-title-desktop { display: none; }
  .meaning-title-mobile { display: block; }
  .meaning-text { margin-top: 32px; }
  .meaning-steps { gap: 9px; margin-top: 50px; }
  .meaning-step { display: block; width: calc(100% - 36px); min-height: 114px; padding: 20px 22px 24px; }
  .meaning-step:nth-child(n) { margin-left: 0; }
  .meaning-step:nth-child(even) { margin-left: 36px; }
  .meaning-step p { margin: 14px 48px 0 0; }
  .section-shell { padding-block: 72px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
  .section-heading h2, .contact h2 { font-size: clamp(43px, 13vw, 58px); }
  .workflow { width: calc(100% - 32px); padding-block: 88px 104px; }
  .workflow-layout { gap: 60px; }
  .workflow-intro { min-height: 560px; }
  .workflow-intro .section-marker { margin-bottom: 44px; }
  .workflow-intro h2 { font-size: clamp(62px, 20vw, 84px); }
  .workflow-script { max-width: 230px; margin: 26px 0 0; font-size: 25px; line-height: 1.08; }
  .workflow-photo-wrap { right: 0; bottom: -8px; width: 145px; }
  .workflow-photo-wrap figcaption { width: 125%; margin-left: -26%; font-size: 9px; }
  .process-list li { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; padding: 24px 0; }
  .process-list li:hover { padding-left: 0; }
  .process-list li > span { font-size: 12px; }
  .process-list h3 { font-size: 27px; }
  .process-list p { font-size: 14px; line-height: 1.48; }
  .prototype-story { width: calc(100% - 32px); padding-block: 88px 104px; }
  .prototype-heading { margin-bottom: 54px; }
  .prototype-heading h2 { font-size: clamp(52px, 16vw, 76px); }
  .prototype-layout { gap: 48px; }
  .prototype-copy { display: block; }
  .prototype-copy > p:not(.prototype-conclusion) { margin-bottom: 22px; font-size: 15px; line-height: 1.55; }
  .prototype-conclusion { margin-top: 38px; padding: 22px 20px 22px 50px; font-size: 25px; }
  .prototype-conclusion > span { top: 22px; left: 19px; font-size: 15px; }
  .prototype-visual { width: min(92%, 360px); padding: 9px; }
  .prototype-visual figcaption { right: 16px; bottom: 16px; max-width: 225px; font-size: 8px; }
  .faq { width: calc(100% - 32px); padding-block: 88px 104px; }
  .faq-heading { margin-bottom: 50px; }
  .faq-heading h2 { font-size: clamp(50px, 15vw, 72px); }
  .faq-item summary { grid-template-columns: 46px minmax(0, 1fr) 34px; gap: 12px; min-height: 88px; padding-block: 20px; font-size: 24px; }
  .faq-number { font-size: 28px; }
  .faq-item summary i { width: 28px; height: 28px; }
  .faq-item summary i::before, .faq-item summary i::after { width: 24px; height: 2px; }
  .faq-answer { grid-template-columns: 46px minmax(0, 1fr); gap: 12px; padding: 0 0 30px; }
  .faq-answer p { grid-column: 2; font-size: 14px; line-height: 1.5; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff, .tariff:last-child { grid-column: auto; min-height: 0; }
  .tariff-featured { transform: none; }
  .tariff h3 { min-height: 0; }
  .formats {
    width: calc(100% - 32px);
    margin-block: 74px 96px;
    padding-inline: 16px;
  }
  .formats.section-shell { padding-block: 42px; }
  .formats .section-heading { margin-bottom: 34px; }
  .format-tabs { grid-template-columns: 1fr; }
  .format-tab {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 239, .38);
  }
  .format-tab:last-child { border-bottom: 0; }
  .format-panel { min-height: 0; gap: 36px; padding: 30px 20px 26px; }
  .format-panels { min-height: 0; }
  .format-intro h3 { margin-bottom: 28px; font-size: clamp(39px, 12vw, 52px); }
  .format-more { width: 100%; justify-content: space-between; }
  .pricing { width: calc(100% - 32px); padding-block: 86px 104px; }
  .pricing::before { top: 7%; left: 72%; width: 82vw; }
  .pricing-heading { margin-bottom: 54px; }
  .pricing-heading h2 { font-size: clamp(64px, 20vw, 88px); }
  .pricing-script { margin-top: 24px; font-size: 30px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 54px; }
  .pricing-card,
  .pricing-card--custom,
  .pricing-card--shop {
    grid-column: 1;
    width: 100%;
    min-height: 480px;
    margin-top: 0;
    justify-self: center;
    transform: none;
  }
  .pricing-card-body { width: 100%; }
  .pricing-card h3 { font-size: clamp(34px, 10vw, 44px); }
  .pricing-title-custom span:last-child {
    font-size: .82em;
    white-space: normal;
  }
  .pricing-price { font-size: clamp(42px, 13vw, 58px); }
  .pricing-actions { margin-top: 18px; }
  .pricing-actions button,
  .pricing-actions a { min-height: 40px; padding-inline: 14px; font-size: 9px; }
  .pricing-footnote { margin-top: 52px; padding-inline: 18px; }
  .tariff-dialog.price-dialog {
    width: calc(100% - 24px);
    max-width: 520px;
    max-height: calc(100svh - 24px);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 28px 72px rgba(7, 31, 25, .34);
    overflow: hidden;
  }
  .price-dialog-circle {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100svh - 24px);
    aspect-ratio: auto;
    padding: 58px 14px 16px;
    border-width: 1px;
    border-radius: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .price-dialog-circle::before,
  .price-dialog-circle::after,
  .price-dialog-orbit { display: none; }
  .price-dialog .dialog-close { position: fixed; top: max(24px, env(safe-area-inset-top)); right: 24px; width: 38px; height: 38px; }
  .price-dialog-content { width: 100%; max-height: none; padding: 24px 18px 20px; border-radius: 16px; overflow: visible; }
  .price-dialog .price-dialog-content h2 { margin-block: 0 8px; font-size: clamp(26px, 7.5vw, 34px); }
  .price-dialog .price-dialog-content .dialog-lead { font-size: 13px; line-height: 1.35; }
  .price-dialog .price-dialog-content ul { margin-block: 12px; }
  .price-dialog .price-dialog-content li { padding-block: 4px; font-size: 11px; line-height: 1.3; }
  .price-dialog .price-dialog-content > p:not(.section-marker, .dialog-lead, .dialog-note) { font-size: 11px; line-height: 1.35; }
  .price-dialog .dialog-note { padding: 10px 12px; font-size: 10px; line-height: 1.3; }
  .price-dialog .dialog-link { min-height: 38px; margin-top: 12px; padding-inline: 12px; font-size: 9px; }
  .price-dialog-orbit text { font-size: 10px; letter-spacing: .12em; }
  .included { padding: 28px 22px; }
  .included-list { grid-template-columns: 1fr; }
  .terms { grid-template-columns: 1fr; }
  .price-includes { width: calc(100% - 32px); padding-block: 88px 104px; }
  .price-includes-heading { margin-bottom: 52px; }
  .price-includes-heading h2 { font-size: clamp(58px, 19vw, 82px); }
  .price-includes-script { margin-top: 20px; margin-right: 8px; font-size: 25px; }
  .price-includes-brush { right: 0; bottom: -23px; width: min(300px, calc(100vw - 48px)); height: 82px; }
  .price-includes-card { gap: 40px; padding: 34px 18px 58px; border-radius: 22px; }
  .price-includes-kicker { margin-left: 4px; }
  .price-includes-grid { grid-template-columns: 1fr; }
  .price-includes-item { grid-template-columns: 42px 1fr; min-height: 72px; padding-inline: 4px; }
  .price-includes-item > span { width: 38px; height: 38px; font-size: 20px; }
  .price-includes-item p { font-size: 13px; }
  .price-extras { margin-top: 34px; padding: 28px 28px 116px; }
  .price-extras h3 { font-size: 34px; }
  .price-extras-brick { right: 14px; bottom: -48px; width: 110px; max-height: 150px; }
  .price-includes-visual { width: min(92%, 390px); }
  .price-includes-paperclip { top: -18px; right: 3%; }
  .price-includes-visual figcaption { margin-top: -24px; font-size: 11px; }
  .price-includes-smiles { right: -2%; bottom: -54px; font-size: 18px; }
  .projects-sticky { padding: 78px 0; }
  .projects-heading { margin-bottom: 36px; }
  .projects-heading h2 { font-size: clamp(45px, 13vw, 60px); }
  .project-content { min-height: 0; padding: 24px 20px 22px; }
  .project h3 { font-size: clamp(36px, 11vw, 48px); }
  .project-task { font-size: 14px; }
  .project-work { margin-block: 18px 22px; }
  .project-work li { font-size: 10px; }
  .project-more { min-height: 500px; padding: 30px 24px; }
  .project-more h3 { font-size: clamp(50px, 15vw, 68px); }
  .contact { width: 100%; padding: 60px 24px; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer > div { justify-content: flex-start; }
  .tariff-dialog { padding: 48px 24px 28px; }
  .tariff-dialog h2 { font-size: 38px; }
  .gallery-dialog { width: calc(100% - 20px); height: calc(100svh - 20px); padding: 22px 14px 18px; }
  .gallery-stage { height: calc(100% - 152px); }
  .gallery-thumbs { display: none; }
  .gallery-heading h2 { margin-bottom: 14px; font-size: 36px; }
  .gallery-dialog .dialog-close { top: 10px; right: 10px; }
  .portfolio-dialog .gallery-finale.is-active {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 22px 0;
  }
  .portfolio-dialog .gallery-finale h3 { font-size: clamp(42px, 14vw, 58px); }
  .portfolio-dialog .gallery-finale img { justify-self: end; width: min(68%, 250px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .projects { height: auto !important; }
  .projects-sticky { position: static; min-height: 0; overflow: visible; }
  .projects-viewport { overflow: visible; }
  .projects-track {
    display: grid;
    width: min(100% - 64px, 1440px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin-inline: auto;
    transform: none !important;
  }
  .project { width: 100%; }
  .project-more { min-height: 520px; }
  .js .hero:not(.is-ready) .hero-paper { opacity: 1; transform: rotate(-.35deg); }
  .js .hero:not(.is-ready) .hero-kicker,
  .js .hero:not(.is-ready) h1,
  .js .hero:not(.is-ready) .hero-note,
  .js .hero:not(.is-ready) .hero-actions,
  .js .hero:not(.is-ready) .paper-word { opacity: 1; transform: none; }
}

.brand-logo-img { display: block; width: auto; max-width: 180px; height: clamp(18px, 1.5vw, 24px); object-fit: contain; }
.brand-logo-img--footer { width: min(180px, 100%); max-width: 180px; height: auto; }

@media (max-width: 1100px) {
  .contact-stage {
    grid-template-columns: minmax(250px, .8fr) minmax(190px, .5fr) minmax(390px, 1.15fr);
    gap: 18px;
  }
  .contact-socials strong { font-size: 28px; }
}

@media (max-width: 900px) {
  .contact { padding-inline: 30px; }
  .contact-topline { grid-template-columns: 1fr auto; }
  .contact-script { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
  .contact-stage { grid-template-columns: 1fr .65fr; min-height: 0; padding-top: 76px; }
  .contact-intro { padding-top: 10px; }
  .contact-waiter { width: min(84%, 230px); }
  .contact-socials { grid-column: 1 / -1; margin-top: 30px; }
}

@media (max-width: 620px) {
  .brand-logo-img { max-width: 138px; height: 18px; }
  .brand-logo-img--footer { width: min(150px, 100%); max-width: 150px; }
  .contact { width: calc(100% - 24px); padding: 70px 18px 24px; }
  .contact-topline { gap: 20px; }
  .contact-cta { padding: 10px 13px; font-size: 10px; }
  .contact-script { font-size: 27px; white-space: normal; }
  .contact-stage { grid-template-columns: 1fr; padding-top: 64px; }
  .contact-intro h2 { font-size: clamp(58px, 18vw, 76px); }
  .contact-waiter { width: min(64%, 220px); margin-top: 88px; }
  .contact-waiter p { top: -68px; left: 50%; width: min(205px, 100%); font-size: 12px; }
  .contact-socials { grid-template-columns: 1fr; width: 100%; }
  .contact-socials > a { min-height: 108px; }
  .contact-social--max { grid-column: 1; min-height: 126px !important; padding-right: 45% !important; }
  .contact-max-pen { right: 8px; width: 43%; height: 110px; }
  .contact-note { text-align: left; }
  .contact-side-label { top: 44%; left: -12px; }
  .telegram-notice { padding: 34px 22px; }
  .telegram-notice__actions { display: grid; align-items: start; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
  .projects-track { grid-template-columns: 1fr; width: min(100% - 32px, 900px); }
}

/* Editorial project cases: full artwork and overlapping panels */
.projects {
  height: auto !important;
  min-height: 0;
  padding: clamp(110px, 10vw, 160px) 0 clamp(150px, 13vw, 220px);
  background:
    linear-gradient(rgba(7, 63, 49, .035) 1px, transparent 1px),
    var(--paper-light);
  background-size: 100% 34px;
}

.projects-sticky {
  position: static;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.projects-heading {
  align-items: end;
  margin-bottom: clamp(80px, 9vw, 130px);
}

.projects-viewport {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  overflow: visible;
}

.projects-track {
  display: grid;
  width: 100%;
  gap: clamp(70px, 8vw, 118px);
  padding: 0;
  transform: none !important;
  will-change: auto;
}

.project {
  display: grid;
  width: 100%;
  height: auto;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr);
  flex: none;
  flex-direction: initial;
  position: sticky;
  top: 86px;
  overflow: hidden;
  background: var(--milk);
  border: 1px solid rgba(7, 63, 49, .22);
  box-shadow: 0 30px 70px rgba(39, 28, 17, .14);
}
.project:nth-child(1) { z-index: 1; }
.project:nth-child(2) { z-index: 2; top: 94px; }
.project:nth-child(3) { z-index: 3; top: 102px; }
.project:nth-child(4) { z-index: 4; top: 110px; }
.project:nth-child(5) { z-index: 5; top: 118px; }

.project-cover {
  display: grid;
  height: auto;
  min-height: 100%;
  place-items: center;
  padding: clamp(16px, 2vw, 28px);
  overflow: hidden;
  background: #ece7dd;
  border-right: 1px solid var(--line);
}

.project-cover img,
.project-cover--top img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 176px);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 14px 34px rgba(39, 28, 17, .1);
  transform: none !important;
}

.project-content {
  min-height: 620px;
  padding: clamp(38px, 4vw, 62px);
}

.project .project-type { margin-bottom: clamp(18px, 2vw, 30px); }
.project h3 {
  margin-bottom: clamp(24px, 2.4vw, 36px);
  font-size: clamp(48px, 4.5vw, 70px);
  line-height: .9;
}
.project-task {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
}
.project-task strong { display: block; margin: 0 0 7px; color: var(--burgundy); text-transform: uppercase; }
.project-done {
  margin: clamp(24px, 2.5vw, 36px) 0 30px;
  padding-top: 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
}
.project-done strong {
  display: block;
  margin-bottom: 7px;
  color: var(--burgundy);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.project-work {
  display: grid;
  gap: 0;
  margin: clamp(26px, 3vw, 42px) 0 32px;
}
.project-work li {
  position: relative;
  padding: 11px 0 11px 22px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.35;
}
.project-work li::before { position: absolute; margin-left: -20px; color: var(--burgundy); content: "—"; }
.project-work li:last-child { border-bottom: 1px solid var(--line); }
.project-link { width: fit-content; min-width: 220px; }

.project-more {
  display: grid;
  min-height: 560px;
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  padding: clamp(46px, 6vw, 84px);
  color: var(--milk);
  background: var(--sage);
}
.project-more-number { align-self: center; justify-self: center; font-size: clamp(190px, 25vw, 360px); }
.project-more > div:last-child { align-self: end; }
.project-more h3 { font-size: clamp(62px, 6vw, 92px); }

@media (max-width: 900px) {
  .projects { padding: 92px 0 120px; }
  .projects-heading { margin-bottom: 64px; }
  .projects-viewport { width: min(100% - 32px, 900px); }
  .projects-track { display: grid; width: 100%; gap: 42px; }
  .project,
  .project:nth-child(n) {
    position: static;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .project-cover {
    min-height: 0;
    aspect-ratio: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .project-cover img,
  .project-cover--top img { width: 100%; height: auto; max-height: none; }
  .project-content { min-height: 0; padding: clamp(28px, 6vw, 48px); }
  .project h3 { font-size: clamp(44px, 9vw, 64px); }
  .project-more { display: grid; min-height: 520px; grid-template-columns: 1fr; }
  .project-more-number { justify-self: end; }
}

@media (max-width: 720px) {
  .projects { padding-top: 80px; }
  .projects-heading { gap: 32px; margin-bottom: 50px; }
  .projects-heading h2 { font-size: clamp(45px, 13vw, 60px); }
  .projects-lead { font-size: 15px; }
  .project-content { padding: 30px 20px 24px; }
  .project h3 { margin-bottom: 24px; font-size: clamp(40px, 12vw, 52px); }
  .project-link { width: 100%; min-width: 0; }
  .project-more { min-height: 480px; padding: 34px 24px; }
  .project-more h3 { font-size: clamp(48px, 15vw, 64px); }
}

@media (prefers-reduced-motion: reduce) {
  .project,
  .project:nth-child(n) { position: static; top: auto; }
}

/* Cover for the extended portfolio */
.project-more-cover {
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  color: var(--green);
  background: #fbf8f3;
}
.project-more-art {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-more-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-more-meme {
  position: absolute;
  right: clamp(-42px, -2.8vw, -24px);
  bottom: -28px;
  z-index: 2;
  width: clamp(130px, 15vw, 220px);
  transform-origin: 100% 100%;
  animation: meme-peek 3.8s ease-in-out infinite;
  filter: drop-shadow(0 13px 16px rgba(39, 28, 17, .18));
}
.project-more-meme img { display: block; width: 100%; height: auto; }
.project-more-meme span {
  position: absolute;
  right: 72%;
  bottom: 54%;
  width: max-content;
  max-width: 160px;
  padding: 9px 12px;
  color: var(--burgundy);
  background: var(--milk);
  border: 1px solid var(--burgundy);
  border-radius: 18px 18px 2px 18px;
  box-shadow: 0 8px 20px rgba(39, 28, 17, .12);
  font-size: clamp(10px, .9vw, 13px);
  line-height: 1.15;
  text-align: center;
}
.project-more-meme strong { display: block; }
.project-more-action {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 2.4vw, 36px);
  z-index: 3;
  display: grid;
  gap: 8px;
  justify-items: center;
  transform: translateX(-50%);
}
.project-more .project-more-action p {
  max-width: none;
  margin: 0;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.project-more-action .project-link {
  min-width: 270px;
  color: var(--milk);
  background: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 0 12px 30px rgba(102, 8, 16, .18);
}
.project-more-action .project-link:hover { color: var(--burgundy); background: var(--milk); }
.project-more-action .project-link span { display: inline-block; animation: arrow-nudge 1.6s ease-in-out infinite; }
.project-more-cover:hover .project-more-meme { animation-duration: 1.8s; }

@keyframes meme-peek {
  0%, 100% { transform: translateY(10px) rotate(-8deg); }
  45% { transform: translateY(2px) rotate(-6deg); }
  60% { transform: translateY(-1px) rotate(-7deg); }
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media (max-width: 720px) {
  .project-more-cover { aspect-ratio: auto; }
  .project-more-art { display: grid; height: auto; overflow: visible; }
  .project-more-poster { width: 100%; height: auto; }
  .project-more-meme { right: -18px; bottom: 66px; width: clamp(88px, 28vw, 120px); }
  .project-more-meme span { right: 64%; bottom: 68%; max-width: 108px; padding: 6px 8px; font-size: 8px; }
  .project-more-action {
    position: static;
    gap: 8px;
    justify-items: stretch;
    padding: 18px 16px 16px;
    background: var(--sage);
    transform: none;
  }
  .project-more .project-more-action p { color: var(--milk); font-size: 9px; text-align: center; }
  .project-more-action .project-link { width: 100%; min-width: 0; }

  .formats {
    width: calc(100% - 32px);
    padding-inline: 14px;
    background: var(--paper-light);
  }
  .formats::after { right: 16px; width: 64px; height: 9px; }
  .format-switcher {
    width: 100%;
    max-width: 100%;
    padding: 48px 9px 9px;
    box-shadow: 8px 10px 0 rgba(112, 134, 106, .16);
  }
  .format-switcher::before { top: 14px; left: 14px; width: calc(100% - 28px); }
  .format-tabs {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    gap: 6px;
    margin-bottom: 9px;
  }
  .format-tab,
  .format-tab:nth-child(n),
  .format-tab.is-active,
  .format-tab:hover:not(.is-active) { transform: none; }
  .format-panel { width: 100%; max-width: 100%; padding: 58px 18px 26px 24px; }
  .format-panel::after { display: none; }
  .format-intro,
  .format-benefits { min-width: 0; }
  .format-more { max-width: 100%; }
  .format-cat {
    position: relative;
    bottom: auto;
    left: auto;
    justify-self: end;
    max-height: 150px;
    margin: 10px -8px -26px 0;
    animation: none;
    transform: none;
  }
  .format-cat--basic { width: 92px; }
  .format-cat--brand,
  .format-cat--zero { width: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-more-meme,
  .project-more-action .project-link span,
  .portfolio-dialog .gallery-finale img,
  .format-panel,
  .format-cat { animation: none; }
}
